diff --git a/core/.cspell.json b/core/.cspell.json
index 56df9c720214e7027c15b4b91d2c0a9d893b0250..e98ca1fe4c4c41698549dd2430917107012cfa29 100644
--- a/core/.cspell.json
+++ b/core/.cspell.json
@@ -13,6 +13,8 @@
       "**/LICENSE.txt",
       "../**/LICENSE.txt",
       "modules/**/Migrate*Test.php",
+      "modules/aggregator/tests/fixtures/drupal6.php",
+      "modules/aggregator/tests/fixtures/drupal7.php",
       "modules/ckeditor5/js/build/*",
       "modules/color/preview.html",
       "modules/color/tests/modules/color_test/themes/color_test_theme/color/preview.html",
diff --git a/core/modules/aggregator/tests/fixtures/drupal6.php b/core/modules/aggregator/tests/fixtures/drupal6.php
new file mode 100644
index 0000000000000000000000000000000000000000..0badecba795212ab13f2fee99614b3232fe9fa1a
--- /dev/null
+++ b/core/modules/aggregator/tests/fixtures/drupal6.php
@@ -0,0 +1,50807 @@
+<?php
+// phpcs:ignoreFile
+/**
+ * @file
+ * A database agnostic dump for testing purposes.
+ *
+ * This file was generated by the Drupal 8.0 db-tools.php script.
+ */
+
+use Drupal\Core\Database\Database;
+
+$connection = Database::getConnection();
+
+$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('accesslog', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'sid' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'path' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'url' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '128',
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'timer' => 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(
+    'aid',
+  ),
+  'indexes' => array(
+    'accesslog_timestamp' => array(
+      'timestamp',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+  ),
+  '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' => 'normal',
+    ),
+    'block' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  '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' => 'normal',
+    ),
+    'image' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    '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' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('aggregator_feed')
+->fields(array(
+  'fid',
+  'title',
+  'url',
+  'refresh',
+  'checked',
+  'link',
+  'description',
+  'image',
+  'etag',
+  'modified',
+  'block',
+))
+->values(array(
+  'fid' => '5',
+  'title' => 'Know Your Meme',
+  'url' => 'http://knowyourmeme.com/newsfeed.rss',
+  'refresh' => '900',
+  'checked' => '1387659487',
+  'link' => 'http://knowyourmeme.com',
+  'description' => 'New items added to the News Feed',
+  'image' => 'http://b.thumbs.redditmedia.com/harEHsUUZVajabtC.png',
+  'etag' => '"213cc1365b96c310e92053c5551f0504"',
+  'modified' => '0',
+  'block' => '7',
+))
+->execute();
+$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' => 'normal',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'guid' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+  ),
+  'primary key' => array(
+    'iid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('aggregator_item')
+->fields(array(
+  'iid',
+  'fid',
+  'title',
+  'link',
+  'author',
+  'description',
+  'timestamp',
+  'guid',
+))
+->values(array(
+  'iid' => '1',
+  'fid' => '5',
+  'title' => 'This (three) weeks in Drupal Core - January 10th 2014',
+  'link' => 'https://groups.drupal.org/node/395218',
+  'author' => 'larowlan',
+  'description' => "<h2 id='new'>What's new with Drupal 8?</h2>",
+  'timestamp' => '1389297196',
+  'guid' => '395218 at https://groups.drupal.org',
+))
+->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',
+  ),
+  '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->insert('batch')
+->fields(array(
+  'bid',
+  'token',
+  'timestamp',
+  'batch',
+))
+->values(array(
+  'bid' => '1',
+  'token' => '',
+  'timestamp' => '1494966324',
+  'batch' => NULL,
+))
+->execute();
+$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' => '10',
+  'module' => 'block',
+  'delta' => '1',
+  'theme' => 'garland',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'throttle' => '0',
+  'visibility' => '1',
+  'pages' => '<front>',
+  'title' => 'Static Block',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '11',
+  'module' => 'block',
+  'delta' => '2',
+  'theme' => 'bluemarine',
+  'status' => '1',
+  'weight' => '-4',
+  'region' => 'right',
+  'custom' => '0',
+  'throttle' => '0',
+  'visibility' => '1',
+  'pages' => 'node',
+  'title' => 'Another Static Block',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '12',
+  'module' => 'block',
+  'delta' => '1',
+  'theme' => 'test_theme',
+  'status' => '1',
+  'weight' => '-7',
+  'region' => 'right',
+  'custom' => '0',
+  'throttle' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '13',
+  'module' => 'block',
+  'delta' => '2',
+  'theme' => 'test_theme',
+  'status' => '1',
+  'weight' => '-2',
+  'region' => 'left',
+  'custom' => '0',
+  'throttle' => '0',
+  'visibility' => '2',
+  'pages' => "<?php\nreturn TRUE;",
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '14',
+  'module' => 'aggregator',
+  'delta' => 'feed-5',
+  'theme' => 'garland',
+  'status' => '1',
+  'weight' => '-2',
+  'region' => 'right',
+  'custom' => '0',
+  'throttle' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '15',
+  'module' => 'block',
+  'delta' => '2',
+  'theme' => 'garland',
+  'status' => '0',
+  'weight' => '1',
+  'region' => '',
+  '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',
+))
+->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('book', array(
+  'fields' => array(
+    'mlid' => 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,
+    ),
+    'bid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'mlid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('book')
+->fields(array(
+  'mlid',
+  'nid',
+  'bid',
+))
+->values(array(
+  'mlid' => '1',
+  'nid' => '4',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '2',
+  'nid' => '5',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '3',
+  'nid' => '6',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '4',
+  'nid' => '7',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '5',
+  'nid' => '8',
+  'bid' => '8',
+))
+->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->insert('boxes')
+->fields(array(
+  'bid',
+  'body',
+  'info',
+  'format',
+))
+->values(array(
+  'bid' => '1',
+  'body' => '<h3>My first custom block body</h3>',
+  'info' => 'My block 1',
+  'format' => '2',
+))
+->values(array(
+  'bid' => '2',
+  'body' => '<h3>My second custom block body</h3>',
+  'info' => 'My block 2',
+  'format' => '2',
+))
+->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' => '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('cache_update', 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' => '1',
+  'pid' => '0',
+  'nid' => '1',
+  'uid' => '0',
+  'subject' => 'The first comment.',
+  'comment' => 'The first comment body.',
+  'hostname' => '203.0.113.1',
+  'timestamp' => '1390264918',
+  'status' => '0',
+  'format' => '1',
+  'thread' => '01/',
+  'name' => '1st comment author name',
+  'mail' => 'comment1@example.com',
+  'homepage' => 'https://www.drupal.org',
+))
+->values(array(
+  'cid' => '2',
+  'pid' => '3',
+  'nid' => '1',
+  'uid' => '0',
+  'subject' => 'The response to the second comment.',
+  'comment' => 'The second comment response body.',
+  'hostname' => '203.0.113.2',
+  'timestamp' => '1390264938',
+  'status' => '0',
+  'format' => '1',
+  'thread' => '02/01',
+  'name' => '3rd comment author name',
+  'mail' => 'comment3@example.com',
+  'homepage' => 'https://www.drupal.org',
+))
+->values(array(
+  'cid' => '3',
+  'pid' => '0',
+  'nid' => '1',
+  'uid' => '0',
+  'subject' => 'The second comment.',
+  'comment' => 'The second comment body.',
+  'hostname' => '203.0.113.3',
+  'timestamp' => '1390264948',
+  'status' => '1',
+  'format' => '1',
+  'thread' => '02/',
+  'name' => '3rd comment author name',
+  'mail' => 'comment3@example.com',
+  'homepage' => 'https://www.drupal.org',
+))
+->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' => '',
+))
+->values(array(
+  'cid' => '7',
+  'pid' => '0',
+  'nid' => '21',
+  'uid' => '1',
+  'subject' => 'Comment to John Smith - EN',
+  'comment' => 'This is an English comment.',
+  'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
+  'timestamp' => '1534014729',
+  'status' => '0',
+  'format' => '1',
+  'thread' => '01/',
+  'name' => 'root',
+  'mail' => '',
+  'homepage' => '',
+))
+->values(array(
+  'cid' => '8',
+  'pid' => '0',
+  'nid' => '22',
+  'uid' => '1',
+  'subject' => 'Comment to John Smith - FR',
+  'comment' => 'This is a French comment.',
+  'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
+  'timestamp' => '1534014763',
+  'status' => '0',
+  'format' => '1',
+  'thread' => '01/',
+  '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('contact', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'category' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'recipients' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'reply' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'selected' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('contact')
+->fields(array(
+  'cid',
+  'category',
+  'recipients',
+  'reply',
+  'weight',
+  'selected',
+))
+->values(array(
+  'cid' => '1',
+  'category' => 'Website feedback',
+  'recipients' => 'admin@example.com',
+  'reply' => '',
+  'weight' => '0',
+  'selected' => '0',
+))
+->values(array(
+  'cid' => '2',
+  'category' => 'Some other category',
+  'recipients' => 'test@example.com',
+  'reply' => 'Thanks for contacting us, we will reply ASAP!',
+  'weight' => '1',
+  'selected' => '1',
+))
+->values(array(
+  'cid' => '3',
+  'category' => 'A category much longer than thirty two characters',
+  'recipients' => 'fortyninechars@example.com',
+  'reply' => '',
+  'weight' => '2',
+  'selected' => '0',
+))
+->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->insert('content_field_company')
+->fields(array(
+  'vid',
+  'nid',
+  'delta',
+  'field_company_nid',
+))
+->values(array(
+  'vid' => '21',
+  'nid' => '18',
+  'delta' => '0',
+  'field_company_nid' => '15',
+))
+->values(array(
+  'vid' => '2002',
+  'nid' => '21',
+  'delta' => '0',
+  'field_company_nid' => NULL,
+))
+->values(array(
+  'vid' => '2003',
+  'nid' => '22',
+  'delta' => '0',
+  'field_company_nid' => NULL,
+))
+->values(array(
+  'vid' => '21',
+  'nid' => '18',
+  'delta' => '1',
+  'field_company_nid' => '16',
+))
+->execute();
+$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_field_multivalue', 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_multivalue_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '2',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+    'delta',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_multivalue')
+->fields(array(
+  'vid',
+  'nid',
+  'field_multivalue_value',
+  'delta',
+))
+->values(array(
+  'vid' => '4',
+  'nid' => '3',
+  'field_multivalue_value' => '33.00',
+  'delta' => '0',
+))
+->values(array(
+  'vid' => '4',
+  'nid' => '3',
+  'field_multivalue_value' => '44.00',
+  'delta' => '1',
+))
+->execute();
+$connection->schema()->createTable('content_field_node_reference', 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_node_reference_nid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+    'delta',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+    'field_node_reference_nid' => array(
+      'field_node_reference_nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_node_reference')
+->fields(array(
+  'vid',
+  'nid',
+  'delta',
+  'field_node_reference_nid',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'delta' => '0',
+  'field_node_reference_nid' => NULL,
+))
+->values(array(
+  'vid' => '2',
+  'nid' => '1',
+  'delta' => '0',
+  'field_node_reference_nid' => NULL,
+))
+->values(array(
+  'vid' => '3',
+  'nid' => '2',
+  'delta' => '0',
+  'field_node_reference_nid' => '1',
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '2',
+  'delta' => '0',
+  'field_node_reference_nid' => NULL,
+))
+->values(array(
+  'vid' => '12',
+  'nid' => '9',
+  'delta' => '0',
+  'field_node_reference_nid' => '2',
+))
+->execute();
+$connection->schema()->createTable('content_field_test', 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_test_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_format' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_test')
+->fields(array(
+  'vid',
+  'nid',
+  'field_test_value',
+  'field_test_format',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'field_test_value' => 'This is a shared text field',
+  'field_test_format' => '1',
+))
+->values(array(
+  'vid' => '3',
+  'nid' => '2',
+  'field_test_value' => NULL,
+  'field_test_format' => NULL,
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '1',
+  'field_test_value' => 'This is a shared text field',
+  'field_test_format' => '1',
+))
+->values(array(
+  'vid' => '12',
+  'nid' => '9',
+  'field_test_value' => 'text for default value',
+  'field_test_format' => '1',
+))
+->values(array(
+  'vid' => '2001',
+  'nid' => '1',
+  'field_test_value' => 'This is a shared text field',
+  'field_test_format' => '1',
+))
+->execute();
+$connection->schema()->createTable('content_field_test_text_single_checkbox', 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_test_text_single_checkbox_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_test_text_single_checkbox')
+->fields(array(
+  'vid',
+  'nid',
+  'field_test_text_single_checkbox_value',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'field_test_text_single_checkbox_value' => '0',
+))
+->values(array(
+  'vid' => '2',
+  'nid' => '1',
+  'field_test_text_single_checkbox_value' => NULL,
+))
+->values(array(
+  'vid' => '3',
+  'nid' => '2',
+  'field_test_text_single_checkbox_value' => NULL,
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '1',
+  'field_test_text_single_checkbox_value' => '0',
+))
+->values(array(
+  'vid' => '12',
+  'nid' => '9',
+  'field_test_text_single_checkbox_value' => '0',
+))
+->values(array(
+  'vid' => '2001',
+  'nid' => '1',
+  'field_test_text_single_checkbox_value' => '0',
+))
+->execute();
+$connection->schema()->createTable('content_field_test_two', 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_test_two_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+    'delta',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_test_two')
+->fields(array(
+  'vid',
+  'nid',
+  'delta',
+  'field_test_two_value',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'delta' => '0',
+  'field_test_two_value' => '10',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'delta' => '1',
+  'field_test_two_value' => '20',
+))
+->values(array(
+  'vid' => '3',
+  'nid' => '2',
+  'delta' => '0',
+  'field_test_two_value' => NULL,
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '1',
+  'delta' => '0',
+  'field_test_two_value' => '10',
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '1',
+  'delta' => '1',
+  'field_test_two_value' => '20',
+))
+->values(array(
+  'vid' => '12',
+  'nid' => '9',
+  'delta' => '0',
+  'field_test_two_value' => NULL,
+))
+->values(array(
+  'vid' => '2001',
+  'nid' => '1',
+  'delta' => '0',
+  'field_test_two_value' => '10',
+))
+->values(array(
+  'vid' => '2001',
+  'nid' => '1',
+  'delta' => '1',
+  'field_test_two_value' => '20',
+))
+->execute();
+$connection->schema()->createTable('content_field_user_reference', 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_user_reference_uid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+    'delta',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+    'field_user_reference_uid' => array(
+      'field_user_reference_uid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_field_user_reference')
+->fields(array(
+  'vid',
+  'nid',
+  'delta',
+  'field_user_reference_uid',
+))
+->values(array(
+  'vid' => '1',
+  'nid' => '1',
+  'delta' => '0',
+  'field_user_reference_uid' => NULL,
+))
+->values(array(
+  'vid' => '2',
+  'nid' => '1',
+  'delta' => '0',
+  'field_user_reference_uid' => NULL,
+))
+->values(array(
+  'vid' => '3',
+  'nid' => '2',
+  'delta' => '0',
+  'field_user_reference_uid' => NULL,
+))
+->values(array(
+  'vid' => '5',
+  'nid' => '2',
+  'delta' => '0',
+  'field_user_reference_uid' => NULL,
+))
+->values(array(
+  'vid' => '12',
+  'nid' => '9',
+  'delta' => '0',
+  'field_user_reference_uid' => NULL,
+))
+->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' => '1',
+  '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' => '1',
+  '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' => '1',
+  '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' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_multivalue',
+  'type' => 'number_decimal',
+  'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
+  'required' => '0',
+  'multiple' => '1',
+  'db_storage' => '0',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_node_reference',
+  'type' => 'nodereference',
+  'global_settings' => 'a:1:{s:19:"referenceable_types";a:9:{s:7:"article";i:0;s:7:"company";i:0;s:8:"employee";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' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_node_reference_2',
+  'type' => 'nodereference',
+  'global_settings' => 'a:1:{s:19:"referenceable_types";a:9:{s:7:"article";s:7:"article";s:7:"company";i:0;s:8:"employee";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' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_reference',
+  'type' => 'nodereference',
+  'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";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' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_reference_2',
+  'type' => 'nodereference',
+  'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";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' => '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',
+))
+->values(array(
+  'field_name' => 'field_test',
+  'type' => 'text',
+  'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";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' => '0',
+  'module' => 'text',
+  'db_columns' => 'a:2:{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;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_date',
+  'type' => 'date',
+  'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";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:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'date',
+  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"varchar";s:6:"length";i:20;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_test_datestamp',
+  'type' => 'datestamp',
+  'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";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:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'date',
+  'db_columns' => 'a:2:{s:5:"value";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_datetime',
+  'type' => 'datetime',
+  'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";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:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'date',
+  'db_columns' => 'a:2:{s:5:"value";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_decimal_radio_buttons',
+  'type' => 'number_decimal',
+  'global_settings' => "a:9:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:8:\"1.2\r\n2.1\";s:18:\"allowed_values_php\";s:0:\"\";s:9:\"precision\";s:2:\"10\";s:5:\"scale\";s:1:\"2\";s:7:\"decimal\";s:1:\".\";}",
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_email',
+  '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',
+))
+->values(array(
+  'field_name' => 'field_test_exclude_unset',
+  'type' => 'text',
+  'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";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:2:{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;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_filefield',
+  'type' => 'filefield',
+  'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'filefield',
+  'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_float_single_checkbox',
+  'type' => 'number_float',
+  'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:12:\"3.142\r\n1.234\";s:18:\"allowed_values_php\";s:0:\"\";}",
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_four',
+  'type' => 'number_float',
+  'global_settings' => 'a:6:{s:6:"prefix";s:3:"id-";s:6:"suffix";s:0:"";s:3:"min";s:3:"100";s:3:"max";s:3:"200";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_identical1',
+  'type' => 'number_integer',
+  'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_identical2',
+  'type' => 'number_integer',
+  'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_imagefield',
+  'type' => 'filefield',
+  'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'filefield',
+  'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_integer_selectlist',
+  'type' => 'number_integer',
+  'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:22:\"1234\r\n2341\r\n3412\r\n4123\";s:18:\"allowed_values_php\";s:0:\"\";}",
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_link',
+  'type' => 'link',
+  'global_settings' => 'a:7:{s:10:"attributes";a:4:{s:6:"target";s:4:"user";s:3:"rel";s:8:"nofollow";s:5:"class";s:0:"";s:5:"title";s:10:"Link Title";}s:7:"display";a:1:{s:10:"url_cutoff";s:2:"80";}s:3:"url";i:0;s:5:"title";s:8:"required";s:11:"title_value";s:0:"";s:13:"enable_tokens";s:0:"";s:12:"validate_url";i:1;}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'link',
+  'db_columns' => 'a:3:{s:3:"url";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;s:8:"sortable";b:1;}s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}s:10:"attributes";a:3:{s:4:"type";s:4:"text";s:4:"size";s:6:"medium";s:8:"not null";b:0;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_phone',
+  'type' => 'au_phone',
+  'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'phone',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_string_selectlist',
+  'type' => 'text',
+  'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"A|Black\r\nB|White\r\n\";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_test_text_single_checkbox',
+  'type' => 'text',
+  'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"0|Hello\r\n1|Goodbye\";s:18:\"allowed_values_php\";s:0:\"\";}",
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '0',
+  '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_test_text_single_checkbox2',
+  'type' => 'text',
+  'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:10:\"Off\r\nHello\";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_test_three',
+  'type' => 'number_decimal',
+  'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:3:"600";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_test_two',
+  'type' => 'number_integer',
+  'global_settings' => 'a:6:{s:6:"prefix";s:4:"pref";s:6:"suffix";s:3:"suf";s:3:"min";s:2:"10";s:3:"max";s:3:"100";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+  'required' => '0',
+  'multiple' => '1',
+  'db_storage' => '0',
+  'module' => 'number',
+  'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_user_reference',
+  'type' => 'userreference',
+  'global_settings' => 'a:2:{s:19:"referenceable_roles";a:4:{i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;}s:20:"referenceable_status";s:0:"";}',
+  'required' => '0',
+  'multiple' => '1',
+  'db_storage' => '0',
+  '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' => '1',
+  'locked' => '0',
+))
+->values(array(
+  'field_name' => 'field_user_reference_2',
+  'type' => 'userreference',
+  'global_settings' => 'a:2:{s:19:"referenceable_roles";a:4:{i:3;i:3;i:2;i:0;i:4;i:0;i:5;i:0;}s:20:"referenceable_status";s:1:"1";}',
+  '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' => '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' => '1',
+))
+->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' => '1',
+))
+->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' => '1',
+))
+->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' => '1',
+))
+->values(array(
+  'field_name' => 'field_multivalue',
+  'type_name' => 'test_planet',
+  'weight' => '2',
+  'label' => 'Decimal Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_multivalue][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:6:{s:6:"weight";i:2;s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example multi-valued decimal field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_node_reference',
+  'type_name' => 'story',
+  'weight' => '21',
+  'label' => 'Node reference',
+  '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:55:"default_value_widget][field_node_reference][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' => '1',
+))
+->values(array(
+  'field_name' => 'field_node_reference_2',
+  'type_name' => 'story',
+  'weight' => '23',
+  'label' => 'Node reference 2',
+  '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: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' => '1',
+))
+->values(array(
+  'field_name' => 'field_reference',
+  'type_name' => 'page',
+  'weight' => '31',
+  'label' => 'Reference',
+  '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: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' => '1',
+))
+->values(array(
+  'field_name' => 'field_reference_2',
+  'type_name' => 'page',
+  'weight' => '32',
+  'label' => 'Reference',
+  '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: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' => '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',
+))
+->values(array(
+  'field_name' => 'field_test',
+  'type_name' => 'story',
+  'weight' => '1',
+  'label' => 'Text Field',
+  '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:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";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:"trimmed";s:7:"exclude";i:0;}}',
+  'description' => 'An example text field.',
+  'widget_module' => 'text',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test',
+  'type_name' => 'test_page',
+  'weight' => '35',
+  'label' => 'Text Field',
+  '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:3:{s:5:"value";s:22:"text for default value";s:6:"format";s:1:"1";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:6:{s:6:"weight";s:2:"35";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";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' => 'An example text field.',
+  'widget_module' => 'text',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_date',
+  'type_name' => 'story',
+  'weight' => '10',
+  'label' => 'Date Field',
+  'widget_type' => 'date_select',
+  'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"10";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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:4:"long";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => 'An example date field.',
+  'widget_module' => 'date',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_datestamp',
+  'type_name' => 'story',
+  'weight' => '11',
+  'label' => 'Date Stamp Field',
+  'widget_type' => 'date_text',
+  'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"11";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"medium";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' => 'An example date stamp field.',
+  'widget_module' => 'date',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_datetime',
+  'type_name' => 'story',
+  'weight' => '12',
+  'label' => 'Datetime Field',
+  'widget_type' => 'date_popup',
+  'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:11:"d/m/Y H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"12";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:5:"short";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' => 'An example datetime field.',
+  'widget_module' => 'date',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_decimal_radio_buttons',
+  'type_name' => 'story',
+  'weight' => '14',
+  'label' => 'Decimal Radio Buttons Field',
+  'widget_type' => 'optionwidgets_buttons',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"14";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example decimal field using radio buttons.',
+  'widget_module' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_email',
+  'type_name' => 'story',
+  'weight' => '6',
+  'label' => 'Email Field',
+  '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:17:"benjy@example.com";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"6";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example email field.',
+  'widget_module' => 'email',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_exclude_unset',
+  'type_name' => 'story',
+  'weight' => '0',
+  'label' => 'Text Field',
+  '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:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:8:{s:6:"weight";i:0;s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";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:"trimmed";s:7:"exclude";i:0;}i:1;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => 'An example text field without exclude.',
+  'widget_module' => 'text',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_filefield',
+  'type_name' => 'story',
+  'weight' => '8',
+  'label' => 'File Field',
+  'widget_type' => 'filefield_widget',
+  'widget_settings' => 'a:5:{s:15:"file_extensions";s:11:"txt pdf doc";s:9:"file_path";s:6:"images";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:4:"200K";s:21:"max_filesize_per_node";s:3:"20M";}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"8";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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:10:"path_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => 'An example image field.',
+  'widget_module' => 'filefield',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_float_single_checkbox',
+  'type_name' => 'story',
+  'weight' => '15',
+  'label' => 'Float Single Checkbox Field',
+  'widget_type' => 'optionwidgets_onoff',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"15";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example float field using a single on/off checkbox.',
+  'widget_module' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_four',
+  'type_name' => 'story',
+  'weight' => '3',
+  'label' => 'Float Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:3:"101";s:14:"_error_element";s:47:"default_value_widget][field_test_four][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"3";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example float field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_identical1',
+  'type_name' => 'story',
+  'weight' => '4',
+  'label' => 'Integer Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"4";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";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:11:"unformatted";s:7:"exclude";i:0;}}',
+  'description' => 'An example integer field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_identical2',
+  'type_name' => 'story',
+  'weight' => '5',
+  'label' => 'Integer Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"5";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";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:11:"unformatted";s:7:"exclude";i:0;}}',
+  'description' => 'An example integer field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_imagefield',
+  'type_name' => 'story',
+  'weight' => '9',
+  'label' => 'Image Field',
+  'widget_type' => 'imagefield_widget',
+  'widget_settings' => 'a:14:{s:15:"file_extensions";s:16:"png gif jpg jpeg";s:9:"file_path";s:0:"";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:0:"";s:21:"max_filesize_per_node";s:0:"";s:14:"max_resolution";s:1:"0";s:14:"min_resolution";s:1:"0";s:3:"alt";s:8:"Test alt";s:10:"custom_alt";i:0;s:5:"title";s:10:"Test title";s:12:"custom_title";i:0;s:10:"title_type";s:9:"textfield";s:13:"default_image";N;s:17:"use_default_image";i:0;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"9";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:15:"image_imagelink";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:11:"image_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => 'An example image field.',
+  'widget_module' => 'imagefield',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_integer_selectlist',
+  'type_name' => 'story',
+  'weight' => '16',
+  'label' => 'Integer Select List Field',
+  'widget_type' => 'optionwidgets_select',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"16";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example integer field using a select list.',
+  'widget_module' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_link',
+  'type_name' => 'story',
+  'weight' => '7',
+  'label' => 'Link Field',
+  'widget_type' => 'link',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"title";s:18:"default link title";s:3:"url";s:22:"https://www.drupal.org";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"7";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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:8:"absolute";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => 'An example link field.',
+  'widget_module' => 'link',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_phone',
+  'type_name' => 'story',
+  'weight' => '13',
+  'label' => 'Phone Field',
+  'widget_type' => 'phone_textfield',
+  'widget_settings' => 'a:3:{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:48:"default_value_widget][field_test_phone][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"13";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example phone field.',
+  'widget_module' => 'phone',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_string_selectlist',
+  'type_name' => 'story',
+  'weight' => '31',
+  'label' => 'String Select List Field',
+  'widget_type' => 'optionwidgets_select',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";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' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_text_single_checkbox',
+  'type_name' => 'story',
+  'weight' => '17',
+  'label' => 'Text Single Checkbox Field',
+  'widget_type' => 'optionwidgets_onoff',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:1:"a";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"17";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}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' => 'An example text field using a single on/off checkbox.',
+  'widget_module' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_text_single_checkbox',
+  'type_name' => 'test_planet',
+  'weight' => '32',
+  'label' => 'Text Single Checkbox Field',
+  'widget_type' => 'text_textfield',
+  'widget_settings' => 'a:4:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:1:"0";s:14:"_error_element";s:63:"default_value_widget][field_test_text_single_checkbox][0][value";}}s:17:"default_value_php";N;s:4:"rows";i:5;s:4:"size";s:3:"255";}',
+  'display_settings' => 'a:7:{s:6:"weight";s:2:"32";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"hidden";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:5;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' => 'An example text field using a single on/off checkbox.',
+  'widget_module' => 'text',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_text_single_checkbox2',
+  'type_name' => 'story',
+  'weight' => '19',
+  'label' => 'Text Single Checkbox Field 2',
+  'widget_type' => 'optionwidgets_onoff',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}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' => 'Checkbox that uses keys only and no label.',
+  'widget_module' => 'optionwidgets',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_three',
+  'type_name' => 'story',
+  'weight' => '2',
+  'label' => 'Decimal Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";d:101;s:14:"_error_element";s:48:"default_value_widget][field_test_three][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"2";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_2";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
+  'description' => 'An example decimal field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_test_two',
+  'type_name' => 'story',
+  'weight' => '1',
+  'label' => 'Integer Field',
+  'widget_type' => 'number',
+  'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:46:"default_value_widget][field_test_two][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
+  'description' => 'An example integer field.',
+  'widget_module' => 'number',
+  'widget_active' => '1',
+))
+->values(array(
+  'field_name' => 'field_user_reference',
+  'type_name' => 'story',
+  'weight' => '20',
+  'label' => 'User reference',
+  'widget_type' => 'userreference_autocomplete',
+  'widget_settings' => 'a:5:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:12:"reverse_link";i:0;s:13:"default_value";a:1:{i:0;a:2:{s:3:"uid";N;s:14:"_error_element";s:55:"default_value_widget][field_user_reference][0][uid][uid";}}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' => '1',
+))
+->values(array(
+  'field_name' => 'field_user_reference_2',
+  'type_name' => 'story',
+  'weight' => '21',
+  'label' => 'User reference 2',
+  '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' => '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->insert('content_type_employee')
+->fields(array(
+  'vid',
+  'nid',
+  'field_commander_uid',
+  'field_company_2_nid',
+  'field_company_3_nid',
+  'field_sync_email',
+))
+->values(array(
+  'vid' => '21',
+  'nid' => '18',
+  'field_commander_uid' => '8',
+  'field_company_2_nid' => '15',
+  'field_company_3_nid' => '16',
+  'field_sync_email' => NULL,
+))
+->values(array(
+  'vid' => '2002',
+  'nid' => '21',
+  'field_commander_uid' => NULL,
+  'field_company_2_nid' => NULL,
+  'field_company_3_nid' => NULL,
+  'field_sync_email' => 'jsmith@example.com',
+))
+->values(array(
+  'vid' => '2003',
+  'nid' => '22',
+  'field_commander_uid' => NULL,
+  'field_company_2_nid' => NULL,
+  'field_company_3_nid' => NULL,
+  'field_sync_email' => 'jsmith@example.com',
+))
+->execute();
+$connection->schema()->createTable('content_type_page', 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_text_field_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_reference_nid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_reference_2_nid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'field_reference_nid' => array(
+      'field_reference_nid',
+    ),
+    'field_reference_2_nid' => array(
+      'field_reference_2_nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_type_page')
+->fields(array(
+  'vid',
+  'nid',
+  'field_text_field_value',
+  'field_reference_nid',
+  'field_reference_2_nid',
+))
+->values(array(
+  'vid' => '13',
+  'nid' => '10',
+  'field_text_field_value' => NULL,
+  'field_reference_nid' => '13',
+  'field_reference_2_nid' => '13',
+))
+->values(array(
+  'vid' => '14',
+  'nid' => '11',
+  'field_text_field_value' => NULL,
+  'field_reference_nid' => '20',
+  'field_reference_2_nid' => '20',
+))
+->values(array(
+  'vid' => '16',
+  'nid' => '13',
+  'field_text_field_value' => NULL,
+  'field_reference_nid' => '10',
+  'field_reference_2_nid' => '10',
+))
+->values(array(
+  'vid' => '23',
+  'nid' => '20',
+  'field_text_field_value' => NULL,
+  'field_reference_nid' => '11',
+  'field_reference_2_nid' => '11',
+))
+->execute();
+$connection->schema()->createTable('content_type_story', 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',
+      'unsigned' => TRUE,
+    ),
+    'field_test_three_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '2',
+    ),
+    'field_test_identical1_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_test_identical2_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_test_link_url' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '2048',
+    ),
+    'field_test_link_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_test_link_attributes' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_date_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '20',
+    ),
+    'field_test_datestamp_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_datetime_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+    'field_test_email_email' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_test_filefield_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_filefield_list' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_filefield_data' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_four_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '0',
+    ),
+    'field_test_integer_selectlist_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_float_single_checkbox_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '0',
+    ),
+    'field_test_decimal_radio_buttons_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '2',
+    ),
+    'field_test_phone_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_test_exclude_unset_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_exclude_unset_format' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_test_imagefield_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_imagefield_list' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_imagefield_data' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_text_single_checkbox2_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_test_datestamp_value2' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_datetime_value2' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+    'field_test_string_selectlist_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_user_reference_2_uid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_node_reference_2_nid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+    'field_user_reference_2_uid' => array(
+      'field_user_reference_2_uid',
+    ),
+    'field_node_reference_2_nid' => array(
+      'field_node_reference_2_nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_type_story')
+->fields(array(
+  'nid',
+  'vid',
+  'uid',
+  'field_test_three_value',
+  'field_test_identical1_value',
+  'field_test_identical2_value',
+  'field_test_link_url',
+  'field_test_link_title',
+  'field_test_link_attributes',
+  'field_test_date_value',
+  'field_test_datestamp_value',
+  'field_test_datetime_value',
+  'field_test_email_email',
+  'field_test_filefield_fid',
+  'field_test_filefield_list',
+  'field_test_filefield_data',
+  'field_test_four_value',
+  'field_test_integer_selectlist_value',
+  'field_test_float_single_checkbox_value',
+  'field_test_decimal_radio_buttons_value',
+  'field_test_phone_value',
+  'field_test_exclude_unset_value',
+  'field_test_exclude_unset_format',
+  'field_test_imagefield_fid',
+  'field_test_imagefield_list',
+  'field_test_imagefield_data',
+  'field_test_text_single_checkbox2_value',
+  'field_test_datestamp_value2',
+  'field_test_datetime_value2',
+  'field_test_string_selectlist_value',
+  'field_user_reference_2_uid',
+  'field_node_reference_2_nid',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '1',
+  'uid' => '1',
+  'field_test_three_value' => '42.42',
+  'field_test_identical1_value' => '1',
+  'field_test_identical2_value' => '1',
+  'field_test_link_url' => 'https://www.drupal.org/project/drupal',
+  'field_test_link_title' => 'Drupal project page',
+  'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
+  'field_test_date_value' => '2013-01-02T04:05:00',
+  'field_test_datestamp_value' => '1391357160',
+  'field_test_datetime_value' => '2015-03-04 06:07:00',
+  'field_test_email_email' => 'PrincessRuwenne@example.com',
+  'field_test_filefield_fid' => '5',
+  'field_test_filefield_list' => '1',
+  'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
+  'field_test_four_value' => NULL,
+  'field_test_integer_selectlist_value' => '3412',
+  'field_test_float_single_checkbox_value' => '3',
+  'field_test_decimal_radio_buttons_value' => NULL,
+  'field_test_phone_value' => NULL,
+  'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
+  'field_test_exclude_unset_format' => '1',
+  'field_test_imagefield_fid' => NULL,
+  'field_test_imagefield_list' => NULL,
+  'field_test_imagefield_data' => NULL,
+  'field_test_text_single_checkbox2_value' => 'Hello',
+  'field_test_datestamp_value2' => NULL,
+  'field_test_datetime_value2' => NULL,
+  'field_test_string_selectlist_value' => NULL,
+  'field_user_reference_2_uid' => NULL,
+  'field_node_reference_2_nid' => NULL,
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'uid' => '1',
+  'field_test_three_value' => '23.20',
+  'field_test_identical1_value' => '1',
+  'field_test_identical2_value' => '1',
+  'field_test_link_url' => 'http://groups.drupal.org/',
+  'field_test_link_title' => 'Drupal Groups',
+  'field_test_link_attributes' => 's:6:"a:0:{}";',
+  'field_test_date_value' => NULL,
+  'field_test_datestamp_value' => NULL,
+  'field_test_datetime_value' => NULL,
+  'field_test_email_email' => NULL,
+  'field_test_filefield_fid' => NULL,
+  'field_test_filefield_list' => NULL,
+  'field_test_filefield_data' => NULL,
+  'field_test_four_value' => NULL,
+  'field_test_integer_selectlist_value' => NULL,
+  'field_test_float_single_checkbox_value' => NULL,
+  'field_test_decimal_radio_buttons_value' => NULL,
+  'field_test_phone_value' => NULL,
+  'field_test_exclude_unset_value' => NULL,
+  'field_test_exclude_unset_format' => NULL,
+  'field_test_imagefield_fid' => NULL,
+  'field_test_imagefield_list' => NULL,
+  'field_test_imagefield_data' => NULL,
+  'field_test_text_single_checkbox2_value' => NULL,
+  'field_test_datestamp_value2' => NULL,
+  'field_test_datetime_value2' => NULL,
+  'field_test_string_selectlist_value' => NULL,
+  'field_user_reference_2_uid' => NULL,
+  'field_node_reference_2_nid' => NULL,
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '5',
+  'uid' => '1',
+  'field_test_three_value' => '42.42',
+  'field_test_identical1_value' => '1',
+  'field_test_identical2_value' => '1',
+  'field_test_link_url' => 'https://www.drupal.org/project/drupal',
+  'field_test_link_title' => 'Drupal project page',
+  'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
+  'field_test_date_value' => '2013-01-02T04:05:00',
+  'field_test_datestamp_value' => '1391357160',
+  'field_test_datetime_value' => '2015-03-04 06:07:00',
+  'field_test_email_email' => 'PrincessRuwenne@example.com',
+  'field_test_filefield_fid' => '5',
+  'field_test_filefield_list' => '1',
+  'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
+  'field_test_four_value' => NULL,
+  'field_test_integer_selectlist_value' => '3412',
+  'field_test_float_single_checkbox_value' => '3',
+  'field_test_decimal_radio_buttons_value' => NULL,
+  'field_test_phone_value' => NULL,
+  'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
+  'field_test_exclude_unset_format' => '1',
+  'field_test_imagefield_fid' => NULL,
+  'field_test_imagefield_list' => NULL,
+  'field_test_imagefield_data' => NULL,
+  'field_test_text_single_checkbox2_value' => 'Hello',
+  'field_test_datestamp_value2' => NULL,
+  'field_test_datetime_value2' => NULL,
+  'field_test_string_selectlist_value' => NULL,
+  'field_user_reference_2_uid' => NULL,
+  'field_node_reference_2_nid' => NULL,
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '12',
+  'uid' => '0',
+  'field_test_three_value' => '101.00',
+  'field_test_identical1_value' => NULL,
+  'field_test_identical2_value' => NULL,
+  'field_test_link_url' => 'node/10',
+  'field_test_link_title' => 'Buy it now',
+  'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
+  'field_test_date_value' => NULL,
+  'field_test_datestamp_value' => NULL,
+  'field_test_datetime_value' => NULL,
+  'field_test_email_email' => NULL,
+  'field_test_filefield_fid' => NULL,
+  'field_test_filefield_list' => NULL,
+  'field_test_filefield_data' => NULL,
+  'field_test_four_value' => '101',
+  'field_test_integer_selectlist_value' => NULL,
+  'field_test_float_single_checkbox_value' => '3',
+  'field_test_decimal_radio_buttons_value' => NULL,
+  'field_test_phone_value' => NULL,
+  'field_test_exclude_unset_value' => 'text for default value',
+  'field_test_exclude_unset_format' => '1',
+  'field_test_imagefield_fid' => '2',
+  'field_test_imagefield_list' => '1',
+  'field_test_imagefield_data' => 'a:2:{s:3:"alt";s:8:"Test alt";s:5:"title";s:10:"Test title";}',
+  'field_test_text_single_checkbox2_value' => 'Off',
+  'field_test_datestamp_value2' => '1391357160',
+  'field_test_datetime_value2' => '2015-03-04 06:07:00',
+  'field_test_string_selectlist_value' => NULL,
+  'field_user_reference_2_uid' => NULL,
+  'field_node_reference_2_nid' => NULL,
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'uid' => '1',
+  'field_test_three_value' => '42.42',
+  'field_test_identical1_value' => '1',
+  'field_test_identical2_value' => '1',
+  'field_test_link_url' => 'https://www.drupal.org/project/drupal',
+  'field_test_link_title' => 'Drupal project page',
+  'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
+  'field_test_date_value' => '2013-01-02T04:05:00',
+  'field_test_datestamp_value' => '1391357160',
+  'field_test_datetime_value' => '2015-03-04 06:07:00',
+  'field_test_email_email' => 'PrincessRuwenne@example.com',
+  'field_test_filefield_fid' => '5',
+  'field_test_filefield_list' => '1',
+  'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
+  'field_test_four_value' => NULL,
+  'field_test_integer_selectlist_value' => '3412',
+  'field_test_float_single_checkbox_value' => '3',
+  'field_test_decimal_radio_buttons_value' => NULL,
+  'field_test_phone_value' => NULL,
+  'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
+  'field_test_exclude_unset_format' => '1',
+  'field_test_imagefield_fid' => NULL,
+  'field_test_imagefield_list' => NULL,
+  'field_test_imagefield_data' => NULL,
+  'field_test_text_single_checkbox2_value' => 'Hello',
+  'field_test_datestamp_value2' => NULL,
+  'field_test_datetime_value2' => NULL,
+  'field_test_string_selectlist_value' => NULL,
+  'field_user_reference_2_uid' => NULL,
+  'field_node_reference_2_nid' => NULL,
+))
+->execute();
+$connection->schema()->createTable('content_type_test_page', 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_test_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_test_format' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('content_type_test_planet', 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,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('content_type_test_planet')
+->fields(array(
+  'nid',
+  'vid',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '4',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '6',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '7',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '8',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '9',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '10',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '11',
+))
+->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' => '1',
+  'uid' => '1',
+  'filename' => 'Image1.png',
+  'filepath' => 'core/tests/fixtures/files/image-1.png',
+  'filemime' => 'image/png',
+  'filesize' => '39325',
+  'status' => '1',
+  'timestamp' => '1388880660',
+))
+->values(array(
+  'fid' => '2',
+  'uid' => '1',
+  'filename' => 'Image2.jpg',
+  'filepath' => 'core/tests/fixtures/files/image-2.jpg',
+  'filemime' => 'image/jpeg',
+  'filesize' => '1831',
+  'status' => '1',
+  'timestamp' => '1388880664',
+))
+->values(array(
+  'fid' => '3',
+  'uid' => '1',
+  'filename' => 'Image-test.gif',
+  'filepath' => 'core/tests/fixtures/files/image-test.gif',
+  'filemime' => 'image/jpeg',
+  'filesize' => '183',
+  'status' => '1',
+  'timestamp' => '1388880668',
+))
+->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',
+))
+->values(array(
+  'fid' => '6',
+  'uid' => '1',
+  'filename' => 'some-temp-file.jpg',
+  'filepath' => '/tmp/some-temp-file.jpg',
+  'filemime' => 'image/jpeg',
+  'filesize' => '24',
+  'status' => '0',
+  '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',
+))
+->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' => '1',
+  'timestamp' => '1549874910',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '2',
+  'timestamp' => '1549874910',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '3',
+  'timestamp' => '1457654737',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '9',
+  'timestamp' => '1468384961',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '12',
+  'timestamp' => '1468384823',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '13',
+  'timestamp' => '1468384931',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '14',
+  'timestamp' => '1493066668',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '15',
+  'timestamp' => '1493066677',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '16',
+  'timestamp' => '1493066685',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '17',
+  'timestamp' => '1493066693',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '18',
+  'timestamp' => '1493066711',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '19',
+  'timestamp' => '1501955803',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '21',
+  'timestamp' => '1534014729',
+))
+->values(array(
+  'uid' => '1',
+  'nid' => '22',
+  'timestamp' => '1534014763',
+))
+->execute();
+$connection->schema()->createTable('i18n_blocks', array(
+  'fields' => array(
+    'ibid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+      'default' => '0',
+    ),
+    'type' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'ibid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('i18n_blocks')
+->fields(array(
+  'ibid',
+  'module',
+  'delta',
+  'type',
+  'language',
+))
+->values(array(
+  'ibid' => '1',
+  'module' => 'user',
+  'delta' => '1',
+  'type' => '0',
+  'language' => 'zu',
+))
+->values(array(
+  'ibid' => '2',
+  'module' => 'menu',
+  'delta' => 'menu-translation-test',
+  'type' => '0',
+  'language' => 'zu',
+))
+->execute();
+$connection->schema()->createTable('i18n_strings', array(
+  'fields' => array(
+    'lid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    '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' => 'normal',
+      'default' => '0',
+    ),
+    'format' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'lid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('i18n_strings')
+->fields(array(
+  'lid',
+  'objectid',
+  'type',
+  'property',
+  'objectindex',
+  'format',
+))
+->values(array(
+  'lid' => '504',
+  'objectid' => 'profile_color',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '505',
+  'objectid' => 'profile_color',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '506',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '507',
+  'objectid' => 'profile_biography',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '508',
+  'objectid' => 'profile_biography',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '509',
+  'objectid' => 'profile_sell_Address',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '510',
+  'objectid' => 'profile_sell_Address',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '511',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '512',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '513',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '514',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'options',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '515',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '516',
+  'objectid' => 'profile_bands',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '517',
+  'objectid' => 'profile_bands',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '518',
+  'objectid' => 'profile_birthdate',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '519',
+  'objectid' => 'profile_birthdate',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '520',
+  'objectid' => 'profile_really_really_love_migrations',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '521',
+  'objectid' => 'profile_really_really_love_migrations',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '522',
+  'objectid' => 'profile_blog',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '523',
+  'objectid' => 'profile_blog',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '524',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'title',
+  'objectindex' => '1',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '525',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'body',
+  'objectindex' => '1',
+  'format' => '2',
+))
+->values(array(
+  'lid' => '526',
+  'objectid' => '2',
+  'type' => 'block',
+  'property' => 'title',
+  'objectindex' => '2',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '527',
+  'objectid' => '2',
+  'type' => 'block',
+  'property' => 'body',
+  'objectindex' => '2',
+  'format' => '2',
+))
+->values(array(
+  'lid' => '528',
+  'objectid' => '4',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '4',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '529',
+  'objectid' => '1',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '1',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '530',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '2',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '531',
+  'objectid' => '3',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '3',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '532',
+  'objectid' => '5',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '5',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '533',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '534',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '535',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '536',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '537',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '538',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '539',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '540',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '541',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '542',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '543',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '544',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '545',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '546',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '547',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '548',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '549',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '550',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '551',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '552',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '553',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '554',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '555',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '556',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '558',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '559',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '560',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '561',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '562',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '563',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '564',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '565',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '566',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '567',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '568',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '569',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '570',
+  'objectid' => 'story-field_test_exclude_unset',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '571',
+  'objectid' => 'story-field_test_exclude_unset',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '572',
+  'objectid' => 'story-field_test_two',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '573',
+  'objectid' => 'story-field_test_two',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '574',
+  'objectid' => 'story-field_test',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '575',
+  'objectid' => 'story-field_test',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '576',
+  'objectid' => 'story-field_test_three',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '577',
+  'objectid' => 'story-field_test_three',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '578',
+  'objectid' => 'story-field_test_four',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '579',
+  'objectid' => 'story-field_test_four',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '580',
+  'objectid' => 'story-field_test_identical1',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '581',
+  'objectid' => 'story-field_test_identical1',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '582',
+  'objectid' => 'story-field_test_identical2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '583',
+  'objectid' => 'story-field_test_identical2',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '584',
+  'objectid' => 'story-field_test_email',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '585',
+  'objectid' => 'story-field_test_email',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '586',
+  'objectid' => 'story-field_test_link',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '587',
+  'objectid' => 'story-field_test_link',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '588',
+  'objectid' => 'story-field_test_filefield',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '589',
+  'objectid' => 'story-field_test_filefield',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '590',
+  'objectid' => 'story-field_test_imagefield',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '591',
+  'objectid' => 'story-field_test_imagefield',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '592',
+  'objectid' => 'story-field_test_date',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '593',
+  'objectid' => 'story-field_test_date',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '594',
+  'objectid' => 'story-field_test_datestamp',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '595',
+  'objectid' => 'story-field_test_datestamp',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '596',
+  'objectid' => 'story-field_test_datetime',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '597',
+  'objectid' => 'story-field_test_datetime',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '598',
+  'objectid' => 'story-field_test_phone',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '599',
+  'objectid' => 'story-field_test_phone',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '600',
+  'objectid' => 'story-field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '601',
+  'objectid' => 'story-field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '602',
+  'objectid' => 'field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'option_1.2',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '603',
+  'objectid' => 'field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'option_2.1',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '604',
+  'objectid' => 'story-field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '605',
+  'objectid' => 'story-field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '606',
+  'objectid' => 'field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_3.142',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '607',
+  'objectid' => 'field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_1.234',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '608',
+  'objectid' => 'story-field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '609',
+  'objectid' => 'story-field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '610',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_1234',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '611',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_2341',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '612',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_3412',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '613',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_4123',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '614',
+  'objectid' => 'story-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '615',
+  'objectid' => 'story-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '616',
+  'objectid' => 'field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_0',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '617',
+  'objectid' => 'field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_1',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '618',
+  'objectid' => 'story-field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '619',
+  'objectid' => 'story-field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '620',
+  'objectid' => 'field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'option_Off',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '621',
+  'objectid' => 'field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'option_Hello',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '622',
+  'objectid' => 'test_page-field_test',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '623',
+  'objectid' => 'test_page-field_test',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '624',
+  'objectid' => 'test_planet-field_multivalue',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '625',
+  'objectid' => 'test_planet-field_multivalue',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '626',
+  'objectid' => 'test_planet-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '627',
+  'objectid' => 'test_planet-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '633',
+  'objectid' => '140',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '140',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '634',
+  'objectid' => '139',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '139',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '635',
+  'objectid' => '139',
+  'type' => 'item',
+  'property' => 'description',
+  'objectindex' => '139',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1664',
+  'objectid' => 'forum',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1665',
+  'objectid' => 'forum',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1666',
+  'objectid' => 'forum',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1667',
+  'objectid' => 'forum',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1672',
+  'objectid' => '6',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '6',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1673',
+  'objectid' => '7',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '7',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1674',
+  'objectid' => '463',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '463',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1675',
+  'objectid' => '463',
+  'type' => 'item',
+  'property' => 'description',
+  'objectindex' => '463',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1676',
+  'objectid' => '138',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '138',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1677',
+  'objectid' => '138',
+  'type' => 'item',
+  'property' => 'description',
+  'objectindex' => '138',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1678',
+  'objectid' => 'profile_really_really_love_migrating',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1679',
+  'objectid' => 'menu-translation-test',
+  'type' => 'menu',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1680',
+  'objectid' => 'employee-field_company',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1681',
+  'objectid' => 'employee-field_commander',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1682',
+  'objectid' => 'employee-field_company_2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1683',
+  'objectid' => 'employee-field_company_3',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1684',
+  'objectid' => 'page-field_reference',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1685',
+  'objectid' => 'page-field_reference_2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1686',
+  'objectid' => 'story-field_test_string_selectlist',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1689',
+  'objectid' => 'test_planet-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1690',
+  'objectid' => 'field_test_string_selectlist',
+  'type' => 'field',
+  'property' => 'option_A',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1691',
+  'objectid' => 'field_test_string_selectlist',
+  'type' => 'field',
+  'property' => 'option_B',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1692',
+  'objectid' => '14',
+  'type' => 'term',
+  'property' => 'name',
+  'objectindex' => '14',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1693',
+  'objectid' => '15',
+  'type' => 'term',
+  'property' => 'name',
+  'objectindex' => '15',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1694',
+  'objectid' => '14',
+  'type' => 'term',
+  'property' => 'description',
+  'objectindex' => '14',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1695',
+  'objectid' => 'profile_count_trees',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->values(array(
+  'lid' => '1696',
+  'objectid' => 'profile_count_trees',
+  'type' => 'field',
+  'property' => 'options',
+  'objectindex' => '0',
+  'format' => '0',
+))
+->execute();
+$connection->schema()->createTable('i18n_variable', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'name',
+    'language',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('i18n_variable')
+->fields(array(
+  'name',
+  'language',
+  'value',
+))
+->values(array(
+  'name' => 'array_filter',
+  'language' => 'en',
+  'value' => 'b:1;',
+))
+->values(array(
+  'name' => 'i18nstrings_allowed_formats',
+  'language' => 'en',
+  'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
+))
+->values(array(
+  'name' => 'statistics_count_content_views',
+  'language' => 'en',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'statistics_enable_access_log',
+  'language' => 'en',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'statistics_flush_accesslog_timer',
+  'language' => 'en',
+  'value' => 's:6:"259200";',
+))
+->values(array(
+  'name' => 'anonymous',
+  'language' => 'fr',
+  'value' => 's:8:"fr Guest";',
+))
+->values(array(
+  'name' => 'error_level',
+  'language' => 'fr',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'site_403',
+  'language' => 'fr',
+  'value' => 's:7:"fr-user";',
+))
+->values(array(
+  'name' => 'site_404',
+  'language' => 'fr',
+  'value' => 's:17:"fr-page-not-found";',
+))
+->values(array(
+  'name' => 'site_footer',
+  'language' => 'fr',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'site_frontpage',
+  'language' => 'fr',
+  'value' => 's:4:"node";',
+))
+->values(array(
+  'name' => 'site_mail',
+  'language' => 'fr',
+  'value' => 's:24:"fr_site_mail@example.com";',
+))
+->values(array(
+  'name' => 'site_mission',
+  'language' => 'fr',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'site_name',
+  'language' => 'fr',
+  'value' => 's:12:"fr site name";',
+))
+->values(array(
+  'name' => 'site_offline',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'site_offline_message',
+  'language' => 'fr',
+  'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
+))
+->values(array(
+  'name' => 'site_slogan',
+  'language' => 'fr',
+  'value' => 's:16:"fr Migrate rocks";',
+))
+->values(array(
+  'name' => 'user_email_verification',
+  'language' => 'fr',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_password_reset_body',
+  'language' => 'fr',
+  'value' => "s:424:\"fr - !username,\r\n\r\nA request to reset the password for your account has been made at !site.\r\n\r\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\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.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
+))
+->values(array(
+  'name' => 'user_mail_password_reset_subject',
+  'language' => 'fr',
+  'value' => 's:57:"fr - Replacement login information for !username at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_admin_created_body',
+  'language' => 'fr',
+  'value' => "s:473:\"fr - !username,\r\n\r\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:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_admin_created_subject',
+  'language' => 'fr',
+  'value' => 's:57:"fr - An administrator created an account for you at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_no_approval_required_body',
+  'language' => 'fr',
+  'value' => "s:447:\"fr - !username,\r\n\r\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_no_approval_required_subject',
+  'language' => 'fr',
+  'value' => 's:43:"fr - Account details for !username at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_pending_approval_body',
+  'language' => 'fr',
+  'value' => "s:277:\"fr - !username,\r\n\r\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.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_pending_approval_subject',
+  'language' => 'fr',
+  'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
+))
+->values(array(
+  'name' => 'user_mail_status_activated_body',
+  'language' => 'fr',
+  'value' => "s:439:\"fr - !username,\r\n\r\nYour account at !site has been activated.\r\n\r\nYou may now log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\r\n\r\nusername: !username\r\n\";",
+))
+->values(array(
+  'name' => 'user_mail_status_activated_notify',
+  'language' => 'fr',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_status_activated_subject',
+  'language' => 'fr',
+  'value' => 's:54:"fr - Account details for !username at !site (approved)";',
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_body',
+  'language' => 'fr',
+  'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_notify',
+  'language' => 'fr',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_subject',
+  'language' => 'fr',
+  'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_body',
+  'language' => 'fr',
+  'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_notify',
+  'language' => 'fr',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_subject',
+  'language' => 'fr',
+  'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
+))
+->values(array(
+  'name' => 'user_pictures',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'user_picture_default',
+  'language' => 'fr',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_picture_dimensions',
+  'language' => 'fr',
+  'value' => 's:5:"85x85";',
+))
+->values(array(
+  'name' => 'user_picture_file_size',
+  'language' => 'fr',
+  'value' => 's:2:"30";',
+))
+->values(array(
+  'name' => 'user_picture_guidelines',
+  'language' => 'fr',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_picture_path',
+  'language' => 'fr',
+  'value' => 's:8:"pictures";',
+))
+->values(array(
+  'name' => 'user_register',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'user_registration_help',
+  'language' => 'fr',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_signatures',
+  'language' => 'fr',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'anonymous',
+  'language' => 'zu',
+  'value' => 's:5:"Guest";',
+))
+->values(array(
+  'name' => 'error_level',
+  'language' => 'zu',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'site_403',
+  'language' => 'zu',
+  'value' => 's:7:"zu-user";',
+))
+->values(array(
+  'name' => 'site_404',
+  'language' => 'zu',
+  'value' => 's:17:"zu-page-not-found";',
+))
+->values(array(
+  'name' => 'site_footer',
+  'language' => 'zu',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'site_frontpage',
+  'language' => 'zu',
+  'value' => 's:4:"node";',
+))
+->values(array(
+  'name' => 'site_mail',
+  'language' => 'zu',
+  'value' => 's:21:"site_mail@example.com";',
+))
+->values(array(
+  'name' => 'site_mission',
+  'language' => 'zu',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'site_name',
+  'language' => 'zu',
+  'value' => 's:14:"zu - site_name";',
+))
+->values(array(
+  'name' => 'site_slogan',
+  'language' => 'zu',
+  'value' => 's:13:"Migrate rocks";',
+))
+->values(array(
+  'name' => 'user_email_verification',
+  'language' => 'zu',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_password_reset_body',
+  'language' => 'zu',
+  'value' => "s:419:\"!username,\r\n\r\nA request to reset the password for your account has been made at !site.\r\n\r\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\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.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
+))
+->values(array(
+  'name' => 'user_mail_password_reset_subject',
+  'language' => 'zu',
+  'value' => 's:52:"Replacement login information for !username at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_admin_created_body',
+  'language' => 'zu',
+  'value' => "s:473:\"zu - !username,\r\n\r\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:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_admin_created_subject',
+  'language' => 'zu',
+  'value' => 's:57:"zu - An administrator created an account for you at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_no_approval_required_body',
+  'language' => 'zu',
+  'value' => "s:442:\"!username,\r\n\r\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_no_approval_required_subject',
+  'language' => 'zu',
+  'value' => 's:38:"Account details for !username at !site";',
+))
+->values(array(
+  'name' => 'user_mail_register_pending_approval_body',
+  'language' => 'zu',
+  'value' => "s:272:\"!username,\r\n\r\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.\r\n\r\n\r\n--  !site team\";",
+))
+->values(array(
+  'name' => 'user_mail_register_pending_approval_subject',
+  'language' => 'zu',
+  'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
+))
+->values(array(
+  'name' => 'user_mail_status_activated_body',
+  'language' => 'zu',
+  'value' => "s:434:\"!username,\r\n\r\nYour account at !site has been activated.\r\n\r\nYou may now log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\r\n\r\nusername: !username\r\n\";",
+))
+->values(array(
+  'name' => 'user_mail_status_activated_notify',
+  'language' => 'zu',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_status_activated_subject',
+  'language' => 'zu',
+  'value' => 's:49:"Account details for !username at !site (approved)";',
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_body',
+  'language' => 'zu',
+  'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_notify',
+  'language' => 'zu',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'user_mail_status_blocked_subject',
+  'language' => 'zu',
+  'value' => 's:48:"Account details for !username at !site (blocked)";',
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_body',
+  'language' => 'zu',
+  'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_notify',
+  'language' => 'zu',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'user_mail_status_deleted_subject',
+  'language' => 'zu',
+  'value' => 's:48:"Account details for !username at !site (deleted)";',
+))
+->values(array(
+  'name' => 'user_pictures',
+  'language' => 'zu',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'user_picture_default',
+  'language' => 'zu',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_picture_dimensions',
+  'language' => 'zu',
+  'value' => 's:5:"85x85";',
+))
+->values(array(
+  'name' => 'user_picture_file_size',
+  'language' => 'zu',
+  'value' => 's:2:"30";',
+))
+->values(array(
+  'name' => 'user_picture_guidelines',
+  'language' => 'zu',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_picture_path',
+  'language' => 'zu',
+  'value' => 's:8:"pictures";',
+))
+->values(array(
+  'name' => 'user_register',
+  'language' => 'zu',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'user_registration_help',
+  'language' => 'zu',
+  'value' => 's:0:"";',
+))
+->values(array(
+  'name' => 'user_signatures',
+  'language' => 'zu',
+  'value' => 's:1:"1";',
+))
+->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('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' => '128',
+      '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' => '32',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'language',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'name',
+    ),
+  ),
+  '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' => '2',
+  'formula' => '($n>1)',
+  'domain' => 'http://fr.drupal.org',
+  'prefix' => 'fr',
+  'weight' => '0',
+  'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
+))
+->values(array(
+  'language' => 'zu',
+  'name' => 'Zulu',
+  'native' => 'isiZulu',
+  'direction' => '0',
+  'enabled' => '1',
+  'plurals' => '0',
+  'formula' => '',
+  'domain' => 'http://zu.drupal.org',
+  'prefix' => 'zu',
+  'weight' => '0',
+  'javascript' => '',
+))
+->execute();
+$connection->schema()->createTable('locales_source', array(
+  'fields' => array(
+    'lid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'location' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'textgroup' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => 'default',
+    ),
+    'source' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'version' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '20',
+      'default' => 'none',
+    ),
+  ),
+  'primary key' => array(
+    'lid',
+  ),
+  'indexes' => array(
+    'source' => array(
+      array(
+        'source',
+        '30',
+      ),
+    ),
+    'textgroup_location' => array(
+      array(
+        'textgroup',
+        '30',
+      ),
+      array(
+        'location',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('locales_source')
+->fields(array(
+  'lid',
+  'location',
+  'textgroup',
+  'source',
+  'version',
+))
+->values(array(
+  'lid' => '1',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'Unspecified error',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '2',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An error occurred. \n@uri\n@text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '3',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An error occurred. \n@uri\n(no information available).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '4',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An HTTP error @status occurred. \n@uri',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '5',
+  'location' => 'content.module:21',
+  'textgroup' => 'default',
+  'source' => 'The content module, a required component of the Content Construction Kit (CCK), allows administrators to associate custom fields with content types. In Drupal, content types are used to define the characteristics of a post, including the title and description of the fields displayed on its add and edit pages. Using the content module (and the other helper modules included in CCK), custom fields beyond the default "Title" and "Body" may be added. CCK features are accessible through tabs on the <a href="@content-types">content types administration page</a>. (See the <a href="@node-help">node module help page</a> for more information about content types.)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '6',
+  'location' => 'content.module:22',
+  'textgroup' => 'default',
+  'source' => 'When adding a custom field to a content type, you determine its type (whether it will contain text, numbers, or references to other objects) and how it will be displayed (either as a text field or area, a select box, checkbox, radio button, or autocompleting field). A field may have multiple values (i.e., a "person" may have multiple e-mail addresses) or a single value (i.e., an "employee" has a single employee identification number). As you add and edit fields, CCK automatically adjusts the structure of the database as necessary. CCK also provides a number of other features, including intelligent caching for your custom data, an import and export facility for content type definitions, and integration with other contributed modules.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '7',
+  'location' => 'content.module:23',
+  'textgroup' => 'default',
+  'source' => 'Custom field types are provided by a set of optional modules included with CCK (each module provides a different type). The <a href="@modules">modules page</a> allows you to enable or disable CCK components. A default installation of CCK includes:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '8',
+  'location' => 'content.module:25',
+  'textgroup' => 'default',
+  'source' => '<em>number</em>, which adds numeric field types, in integer, decimal or floating point form. You may define a set of allowed inputs, or specify an allowable range of values. A variety of common formats for displaying numeric data are available.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '9',
+  'location' => 'content.module:26',
+  'textgroup' => 'default',
+  'source' => "<em>text</em>, which adds text field types. A text field may contain plain text only, or optionally, may use Drupal's input format filters to securely manage rich text input. Text input fields may be either a single line (text field), multiple lines (text area), or for greater input control, a select box, checkbox, or radio buttons. If desired, CCK can validate the input to a set of allowed values.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '10',
+  'location' => 'content.module:27',
+  'textgroup' => 'default',
+  'source' => '<em>nodereference</em>, which creates custom references between Drupal nodes. By adding a <em>nodereference</em> field and two different content types, for instance, you can easily create complex parent/child relationships between data (multiple "employee" nodes may contain a <em>nodereference</em> field linking to an "employer" node).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '11',
+  'location' => 'content.module:28',
+  'textgroup' => 'default',
+  'source' => "<em>userreference</em>, which creates custom references to your sites' user accounts. By adding a <em>userreference</em> field, you can create complex relationships between your site's users and posts. To track user involvement in a post beyond Drupal's standard <em>Authored by</em> field, for instance, add a <em>userreference</em> field named \"Edited by\" to a content type to store a link to an editor's user account page.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '12',
+  'location' => 'content.module:29',
+  'textgroup' => 'default',
+  'source' => '<em>fieldgroup</em>, which creates collapsible fieldsets to hold a group of related fields. A fieldset may either be open or closed by default. The order of your fieldsets, and the order of fields within a fieldset, is managed via a drag-and-drop interface provided by content module.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '13',
+  'location' => 'content.module:31',
+  'textgroup' => 'default',
+  'source' => 'For more information, see the online handbook entry for <a href="@handbook-cck">CCK</a> or the <a href="@project-cck">CCK project page</a>.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '14',
+  'location' => 'theme/theme.inc:111',
+  'textgroup' => 'default',
+  'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '15',
+  'location' => 'theme/theme.inc:114',
+  'textgroup' => 'default',
+  'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '16',
+  'location' => 'content.module:48',
+  'textgroup' => 'default',
+  'source' => 'Control the order of fields in the input form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '17',
+  'location' => 'content.module:492',
+  'textgroup' => 'default',
+  'source' => 'This field is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '18',
+  'location' => 'content.module:496',
+  'textgroup' => 'default',
+  'source' => '!title: !required',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '19',
+  'location' => 'content.module:499,  modules/content_multigroup/content_multigroup.module:903',
+  'textgroup' => 'default',
+  'source' => 'Order',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '20',
+  'location' => 'content.module:1640',
+  'textgroup' => 'default',
+  'source' => 'RSS Item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '21',
+  'location' => 'content.module:1883',
+  'textgroup' => 'default',
+  'source' => 'Search Index',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '22',
+  'location' => 'content.module:1887',
+  'textgroup' => 'default',
+  'source' => 'Search Result',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '23',
+  'location' => 'content.module:2362',
+  'textgroup' => 'default',
+  'source' => 'Language',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '24',
+  'location' => 'content.module:2376',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '25',
+  'location' => 'content.module:2407',
+  'textgroup' => 'default',
+  'source' => 'File attachments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '26',
+  'location' => 'content.module:595',
+  'textgroup' => 'default',
+  'source' => 'Updating field type %type with module %module.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '27',
+  'location' => 'content.module:602',
+  'textgroup' => 'default',
+  'source' => 'Updating widget type %type with module %module.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '28',
+  'location' => 'content.module:60',
+  'textgroup' => 'default',
+  'source' => 'Use PHP input for field settings (dangerous - grant with care)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '29',
+  'location' => 'content.module:101',
+  'textgroup' => 'default',
+  'source' => 'Manage fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '30',
+  'location' => 'content.module:110',
+  'textgroup' => 'default',
+  'source' => 'Display fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '31',
+  'location' => 'content.module:143',
+  'textgroup' => 'default',
+  'source' => 'General',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '32',
+  'location' => 'content.module:149',
+  'textgroup' => 'default',
+  'source' => 'Advanced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '33',
+  'location' => 'content.module:141',
+  'textgroup' => 'default',
+  'source' => 'Remove field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '34',
+  'location' => 'content.info:0,  includes/content.rules.inc:19;212,  includes/views/content.views.inc:180;261',
+  'textgroup' => 'default',
+  'source' => 'Content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '35',
+  'location' => 'content.info:0',
+  'textgroup' => 'default',
+  'source' => 'Allows administrators to define new content types.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '36',
+  'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_permissions/content_permissions.info:0,  modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'CCK',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '37',
+  'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
+  'textgroup' => 'default',
+  'source' => 'Text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '38',
+  'location' => 'examples/example_field.php:178',
+  'textgroup' => 'default',
+  'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database and it must match the field storage type, %type. The label is optional and the key will be used as the label if no label is specified.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '39',
+  'location' => 'examples/example_field.php:484',
+  'textgroup' => 'default',
+  'source' => 'Text area',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '40',
+  'location' => 'includes/content.admin.inc:171;197;895,  modules/fieldgroup/fieldgroup.module:209',
+  'textgroup' => 'default',
+  'source' => 'Remove',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '41',
+  'location' => 'content.module:1854',
+  'textgroup' => 'default',
+  'source' => 'Basic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '42',
+  'location' => 'content.module:1857,  modules/nodereference/nodereference.module:268',
+  'textgroup' => 'default',
+  'source' => 'Teaser',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '43',
+  'location' => 'content.module:1861,  modules/nodereference/nodereference.module:263',
+  'textgroup' => 'default',
+  'source' => 'Full node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '44',
+  'location' => 'content.module:1867;1870',
+  'textgroup' => 'default',
+  'source' => 'RSS',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '45',
+  'location' => 'content.module:1880',
+  'textgroup' => 'default',
+  'source' => 'Search',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '46',
+  'location' => 'content.module:2348;2355',
+  'textgroup' => 'default',
+  'source' => 'Node module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '47',
+  'location' => 'content.module:2363',
+  'textgroup' => 'default',
+  'source' => 'Locale module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '48',
+  'location' => 'content.module:2369',
+  'textgroup' => 'default',
+  'source' => 'Menu settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '49',
+  'location' => 'content.module:2370',
+  'textgroup' => 'default',
+  'source' => 'Menu module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '50',
+  'location' => 'content.module:2377',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '51',
+  'location' => 'content.module:2383',
+  'textgroup' => 'default',
+  'source' => 'Book',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '52',
+  'location' => 'content.module:2384',
+  'textgroup' => 'default',
+  'source' => 'Book module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '53',
+  'location' => 'content.module:2390',
+  'textgroup' => 'default',
+  'source' => 'Poll title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '54',
+  'location' => 'content.module:2391',
+  'textgroup' => 'default',
+  'source' => 'Poll module title.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '55',
+  'location' => 'content.module:2396',
+  'textgroup' => 'default',
+  'source' => 'Poll choices',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '56',
+  'location' => 'content.module:2397',
+  'textgroup' => 'default',
+  'source' => 'Poll module choices.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '57',
+  'location' => 'content.module:2400',
+  'textgroup' => 'default',
+  'source' => 'Poll settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '58',
+  'location' => 'content.module:2401',
+  'textgroup' => 'default',
+  'source' => 'Poll module settings.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '59',
+  'location' => 'content.module:2408',
+  'textgroup' => 'default',
+  'source' => 'Upload module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '60',
+  'location' => 'content.module:595;602;0,  includes/content.crud.inc:589;633',
+  'textgroup' => 'default',
+  'source' => 'content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '61',
+  'location' => 'content.module:79',
+  'textgroup' => 'default',
+  'source' => 'Fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '62',
+  'location' => 'content.install:236',
+  'textgroup' => 'default',
+  'source' => "Updates for CCK-related modules are not run until the modules are enabled on the <a href=\"@admin-modules-path\">administer modules page</a>. When you enable them, you'll need to return to <a href=\"@update-php\">update.php</a> and run the remaining updates.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '63',
+  'location' => 'content.install:239',
+  'textgroup' => 'default',
+  'source' => '!module.module has updates but cannot be updated because content.module is not enabled.<br />If and when content.module is enabled, you will need to re-run the update script. You will continue to see this message until the module is enabled and updates are run.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '64',
+  'location' => 'content.install:244',
+  'textgroup' => 'default',
+  'source' => '!module.module has updates and is available in the modules folder but is not enabled.<br />If and when it is enabled, you will need to re-run the update script. You will continue to see this message until the module is enabled and updates are run.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '65',
+  'location' => 'content.install:251',
+  'textgroup' => 'default',
+  'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '66',
+  'location' => '(duplicate) content.install:10',
+  'textgroup' => 'default',
+  'source' => 'CCK - No Views integration',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '67',
+  'location' => '(duplicate) content.install:11',
+  'textgroup' => 'default',
+  'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '68',
+  'location' => 'includes/content.admin.inc:16,  modules/content_copy/content_copy_export_form.tpl.php:11,  theme/content-admin-field-overview-form.tpl.php:12',
+  'textgroup' => 'default',
+  'source' => 'Name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '69',
+  'location' => 'includes/content.admin.inc:16,  modules/content_copy/content_copy_export_form.tpl.php:12,  theme/content-admin-field-overview-form.tpl.php:13',
+  'textgroup' => 'default',
+  'source' => 'Type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '70',
+  'location' => 'includes/content.admin.inc:16,  modules/fieldgroup/fieldgroup.module:158',
+  'textgroup' => 'default',
+  'source' => 'Description',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '71',
+  'location' => 'includes/content.admin.inc:16,  theme/content-admin-field-overview-form.tpl.php:14',
+  'textgroup' => 'default',
+  'source' => 'Operations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '72',
+  'location' => 'includes/content.admin.inc:30',
+  'textgroup' => 'default',
+  'source' => 'edit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '73',
+  'location' => 'includes/content.admin.inc:33',
+  'textgroup' => 'default',
+  'source' => 'manage fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '74',
+  'location' => 'includes/content.admin.inc:36',
+  'textgroup' => 'default',
+  'source' => 'delete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '75',
+  'location' => 'includes/content.admin.inc:47',
+  'textgroup' => 'default',
+  'source' => 'No content types available.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '76',
+  'location' => 'includes/content.admin.inc:54',
+  'textgroup' => 'default',
+  'source' => '» Add a new content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '77',
+  'location' => 'includes/content.admin.inc:67;796;991',
+  'textgroup' => 'default',
+  'source' => 'Field name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '78',
+  'location' => 'includes/content.admin.inc:67;811;997',
+  'textgroup' => 'default',
+  'source' => 'Field type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '79',
+  'location' => 'includes/content.admin.inc:67',
+  'textgroup' => 'default',
+  'source' => 'Used in',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '80',
+  'location' => 'includes/content.admin.inc:71',
+  'textgroup' => 'default',
+  'source' => '@field_name (Locked)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '81',
+  'location' => 'includes/content.admin.inc:90',
+  'textgroup' => 'default',
+  'source' => 'No fields have been defined for any content type yet.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '82',
+  'location' => 'not literally, English needs work,  includes/content.admin.inc:106,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '83',
+  'location' => 'includes/content.admin.inc:108',
+  'textgroup' => 'default',
+  'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '84',
+  'location' => 'includes/content.admin.inc:170;196',
+  'textgroup' => 'default',
+  'source' => 'Configure',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '85',
+  'location' => 'Schreibgeschützt,  includes/content.admin.inc:181',
+  'textgroup' => 'default',
+  'source' => 'Locked',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '86',
+  'location' => 'includes/content.admin.inc:237',
+  'textgroup' => 'default',
+  'source' => '- Select a field type -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '87',
+  'location' => 'includes/content.admin.inc:238',
+  'textgroup' => 'default',
+  'source' => '- Select a widget -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '88',
+  'location' => 'includes/content.admin.inc:244;285;315;804;985,  includes/panels/content_types/content_field.inc:97,  includes/views/handlers/content_handler_field.inc:56',
+  'textgroup' => 'default',
+  'source' => 'Label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '89',
+  'location' => 'includes/content.admin.inc:253',
+  'textgroup' => 'default',
+  'source' => 'Field name (a-z, 0-9, _)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '90',
+  'location' => 'includes/content.admin.inc:258',
+  'textgroup' => 'default',
+  'source' => 'Type of data to store.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '91',
+  'location' => 'includes/content.admin.inc:263;295',
+  'textgroup' => 'default',
+  'source' => 'Form element to edit the data.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '92',
+  'location' => 'includes/content.admin.inc:279',
+  'textgroup' => 'default',
+  'source' => '- Select an existing field -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '93',
+  'location' => 'includes/content.admin.inc:290',
+  'textgroup' => 'default',
+  'source' => 'Field to share',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '94',
+  'location' => 'includes/content.admin.inc:324',
+  'textgroup' => 'default',
+  'source' => 'Group name (a-z, 0-9, _)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '95',
+  'location' => 'includes/content.admin.inc:352;677,  modules/fieldgroup/fieldgroup.module:177;341',
+  'textgroup' => 'default',
+  'source' => 'Save',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '96',
+  'location' => 'includes/content.admin.inc:373',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '97',
+  'location' => 'includes/content.admin.inc:378',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to provide a field name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '98',
+  'location' => 'includes/content.admin.inc:392',
+  'textgroup' => 'default',
+  'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '99',
+  'location' => 'includes/content.admin.inc:395',
+  'textgroup' => 'default',
+  'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '100',
+  'location' => 'includes/content.admin.inc:399',
+  'textgroup' => 'default',
+  'source' => "Add new field: the name 'field_instance' is a reserved name.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '101',
+  'location' => 'includes/content.admin.inc:411',
+  'textgroup' => 'default',
+  'source' => 'Add new field: the field name %field_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '102',
+  'location' => 'includes/content.admin.inc:417',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to select a field type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '103',
+  'location' => 'includes/content.admin.inc:422',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to select a widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '104',
+  'location' => 'includes/content.admin.inc:428',
+  'textgroup' => 'default',
+  'source' => 'Add new field: invalid widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '105',
+  'location' => 'includes/content.admin.inc:449',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '106',
+  'location' => 'includes/content.admin.inc:454',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to select a field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '107',
+  'location' => 'includes/content.admin.inc:459',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to select a widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '108',
+  'location' => 'includes/content.admin.inc:465',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: invalid widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '109',
+  'location' => 'includes/content.admin.inc:514',
+  'textgroup' => 'default',
+  'source' => 'There was a problem creating field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '110',
+  'location' => 'includes/content.admin.inc:526',
+  'textgroup' => 'default',
+  'source' => 'The field %label cannot be added to a content type because it is locked.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '111',
+  'location' => 'includes/content.admin.inc:536',
+  'textgroup' => 'default',
+  'source' => 'There was a problem adding field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '112',
+  'location' => 'includes/content.admin.inc:578',
+  'textgroup' => 'default',
+  'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '113',
+  'location' => 'includes/content.admin.inc:585;633,  includes/panels/content_types/content_field.inc:101,  modules/content_multigroup/content_multigroup.module:352',
+  'textgroup' => 'default',
+  'source' => 'Above',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '114',
+  'location' => 'includes/content.admin.inc:586,  includes/panels/content_types/content_field.inc:102',
+  'textgroup' => 'default',
+  'source' => 'Inline',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '115',
+  'location' => 'includes/content.admin.inc:625;668',
+  'textgroup' => 'default',
+  'source' => 'Include',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '116',
+  'location' => 'includes/content.admin.inc:625;668,  theme/content-admin-display-overview-form.tpl.php:17',
+  'textgroup' => 'default',
+  'source' => 'Exclude',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '117',
+  'location' => 'includes/content.admin.inc:637',
+  'textgroup' => 'default',
+  'source' => 'no styling',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '118',
+  'location' => 'includes/content.admin.inc:638',
+  'textgroup' => 'default',
+  'source' => 'simple',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '119',
+  'location' => 'includes/content.admin.inc:639',
+  'textgroup' => 'default',
+  'source' => 'fieldset',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '120',
+  'location' => 'includes/content.admin.inc:640',
+  'textgroup' => 'default',
+  'source' => 'fieldset - collapsible',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '121',
+  'location' => 'includes/content.admin.inc:641',
+  'textgroup' => 'default',
+  'source' => 'fieldset - collapsed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '122',
+  'location' => 'includes/content.admin.inc:697',
+  'textgroup' => 'default',
+  'source' => 'Your settings have been saved.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '123',
+  'location' => 'includes/content.admin.inc:767',
+  'textgroup' => 'default',
+  'source' => '@type: @field (@label)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '124',
+  'location' => 'includes/content.admin.inc:793',
+  'textgroup' => 'default',
+  'source' => 'Edit basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '125',
+  'location' => 'includes/content.admin.inc:799',
+  'textgroup' => 'default',
+  'source' => 'The machine-readable name of the field. This name cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '126',
+  'location' => 'includes/content.admin.inc:807',
+  'textgroup' => 'default',
+  'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '127',
+  'location' => 'includes/content.admin.inc:814',
+  'textgroup' => 'default',
+  'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '128',
+  'location' => 'includes/content.admin.inc:819;1003',
+  'textgroup' => 'default',
+  'source' => 'Widget type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '129',
+  'location' => 'includes/content.admin.inc:823',
+  'textgroup' => 'default',
+  'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '130',
+  'location' => 'includes/content.admin.inc:833,  includes/content.rules.inc:66',
+  'textgroup' => 'default',
+  'source' => 'Continue',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '131',
+  'location' => 'includes/content.admin.inc:861',
+  'textgroup' => 'default',
+  'source' => 'Updated basic settings for field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '132',
+  'location' => 'includes/content.admin.inc:865',
+  'textgroup' => 'default',
+  'source' => 'There was a problem updating the basic settings for field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '133',
+  'location' => 'includes/content.admin.inc:892',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to remove the field %field?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '134',
+  'location' => 'includes/content.admin.inc:894',
+  'textgroup' => 'default',
+  'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '135',
+  'location' => 'includes/content.admin.inc:895,  modules/fieldgroup/fieldgroup.module:209',
+  'textgroup' => 'default',
+  'source' => 'Cancel',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '136',
+  'location' => 'includes/content.admin.inc:901',
+  'textgroup' => 'default',
+  'source' => 'This field is <strong>locked</strong> and cannot be removed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '137',
+  'location' => 'includes/content.admin.inc:922',
+  'textgroup' => 'default',
+  'source' => 'Removed field %field from %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '138',
+  'location' => 'includes/content.admin.inc:927',
+  'textgroup' => 'default',
+  'source' => 'There was a problem deleting %field from %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '139',
+  'location' => 'includes/content.admin.inc:946',
+  'textgroup' => 'default',
+  'source' => 'The field %field is locked and cannot be edited.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '140',
+  'location' => 'includes/content.admin.inc:980',
+  'textgroup' => 'default',
+  'source' => '%type basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '141',
+  'location' => 'includes/content.admin.inc:1010;1189',
+  'textgroup' => 'default',
+  'source' => 'Change basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '142',
+  'location' => 'includes/content.admin.inc:1016',
+  'textgroup' => 'default',
+  'source' => '%type settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '143',
+  'location' => 'includes/content.admin.inc:1017',
+  'textgroup' => 'default',
+  'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '144',
+  'location' => 'includes/content.admin.inc:1031,  modules/fieldgroup/fieldgroup.module:145',
+  'textgroup' => 'default',
+  'source' => 'Help text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '145',
+  'location' => 'includes/content.admin.inc:1034',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '146',
+  'location' => 'includes/content.admin.inc:1060',
+  'textgroup' => 'default',
+  'source' => 'Default value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '147',
+  'location' => 'includes/content.admin.inc:1081,  modules/number/number.module:123,  modules/text/text.module:86',
+  'textgroup' => 'default',
+  'source' => 'PHP code',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '148',
+  'location' => 'includes/content.admin.inc:1090;1245,  includes/content.rules.inc:93',
+  'textgroup' => 'default',
+  'source' => "'@column' => value for @column",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '149',
+  'location' => 'includes/content.admin.inc:1092;1247,  includes/content.rules.inc:95',
+  'textgroup' => 'default',
+  'source' => "return array(\n  0 => array(@columns),\n  // You'll usually want to stop here. Provide more values\n  // if you want your 'default value' to be multi-valued:\n  1 => array(@columns),\n  2 => ...\n);",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '150',
+  'location' => 'includes/content.admin.inc:1096;1109,  includes/content.rules.inc:99,  modules/number/number.module:130;139,  modules/text/text.module:93;102',
+  'textgroup' => 'default',
+  'source' => 'Code',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '151',
+  'location' => 'includes/content.admin.inc:1100',
+  'textgroup' => 'default',
+  'source' => 'Advanced usage only: PHP code that returns a default value. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>To figure out the expected format, you can use the <em>devel load</em> tab provided by <a href="@link_devel">devel module</a> on a %type content page.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '152',
+  'location' => 'includes/content.admin.inc:1110,  modules/number/number.module:140,  modules/text/text.module:103',
+  'textgroup' => 'default',
+  'source' => '&lt;none&gt;',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '153',
+  'location' => 'includes/content.admin.inc:1111,  modules/number/number.module:141,  modules/text/text.module:104',
+  'textgroup' => 'default',
+  'source' => "You're not allowed to input PHP code.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '154',
+  'location' => 'includes/content.admin.inc:1111',
+  'textgroup' => 'default',
+  'source' => 'This PHP code was set by an administrator and will override any value specified above.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '155',
+  'location' => 'includes/content.admin.inc:1118',
+  'textgroup' => 'default',
+  'source' => 'Global settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '156',
+  'location' => 'includes/content.admin.inc:1119',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the %field field in every content type in which it appears.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '157',
+  'location' => 'includes/content.admin.inc:1123',
+  'textgroup' => 'default',
+  'source' => 'Required',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '158',
+  'location' => 'includes/content.admin.inc:1126',
+  'textgroup' => 'default',
+  'source' => 'Maximum number of values users can enter for this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '159',
+  'location' => 'includes/content.admin.inc:1128',
+  'textgroup' => 'default',
+  'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '160',
+  'location' => 'includes/content.admin.inc:1130',
+  'textgroup' => 'default',
+  'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '161',
+  'location' => 'includes/content.admin.inc:1133',
+  'textgroup' => 'default',
+  'source' => 'Number of values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '162',
+  'location' => 'includes/content.admin.inc:1134,  modules/content_multigroup/content_multigroup.module:73',
+  'textgroup' => 'default',
+  'source' => 'Unlimited',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '163',
+  'location' => 'includes/content.admin.inc:1151,  modules/content_copy/content_copy.module:251',
+  'textgroup' => 'default',
+  'source' => 'Save field settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '164',
+  'location' => 'includes/content.admin.inc:1288',
+  'textgroup' => 'default',
+  'source' => "The PHP code for 'default value' returned @value, which is invalid.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '165',
+  'location' => 'includes/content.admin.inc:1292',
+  'textgroup' => 'default',
+  'source' => 'The default value is invalid.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '166',
+  'location' => 'includes/content.admin.inc:1316',
+  'textgroup' => 'default',
+  'source' => 'Added field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '167',
+  'location' => 'includes/content.admin.inc:1320',
+  'textgroup' => 'default',
+  'source' => 'Saved field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '168',
+  'location' => 'includes/content.admin.inc:1678',
+  'textgroup' => 'default',
+  'source' => 'Processing',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '169',
+  'location' => 'includes/content.admin.inc:1679',
+  'textgroup' => 'default',
+  'source' => 'The update has encountered an error.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '170',
+  'location' => 'includes/content.admin.inc:1693',
+  'textgroup' => 'default',
+  'source' => 'The database has been altered and data has been migrated or deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '171',
+  'location' => 'includes/content.admin.inc:1696',
+  'textgroup' => 'default',
+  'source' => 'An error occurred and database alteration did not complete.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '172',
+  'location' => 'includes/content.admin.inc:1799',
+  'textgroup' => 'default',
+  'source' => 'Processing %title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '173',
+  'location' => 'includes/content.admin.inc:1865',
+  'textgroup' => 'default',
+  'source' => '%name must be an integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '174',
+  'location' => 'includes/content.admin.inc:1875',
+  'textgroup' => 'default',
+  'source' => '%name must be a positive integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '175',
+  'location' => 'includes/content.admin.inc:1885',
+  'textgroup' => 'default',
+  'source' => '%name must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '176',
+  'location' => 'includes/content.admin.inc:1697',
+  'textgroup' => 'default',
+  'source' => '1 item successfully processed:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '177',
+  'location' => 'includes/content.admin.inc:1697',
+  'textgroup' => 'default',
+  'source' => '@count items successfully processed:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '178',
+  'location' => 'includes/content.crud.inc:589',
+  'textgroup' => 'default',
+  'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '179',
+  'location' => 'includes/content.crud.inc:633',
+  'textgroup' => 'default',
+  'source' => 'The content fields table %name has been deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '180',
+  'location' => 'includes/content.node_form.inc:223',
+  'textgroup' => 'default',
+  'source' => 'Add another item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '181',
+  'location' => 'includes/panels/content_types/content_field.inc:14',
+  'textgroup' => 'default',
+  'source' => 'Content field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '182',
+  'location' => 'includes/content.panels.inc:38',
+  'textgroup' => 'default',
+  'source' => 'A content field from the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '183',
+  'location' => 'includes/panels/content_types/content_field.inc:45,  modules/fieldgroup/fieldgroup.panels.inc:31,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
+  'textgroup' => 'default',
+  'source' => 'Node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '184',
+  'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
+  'textgroup' => 'default',
+  'source' => 'Node context',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '185',
+  'location' => 'includes/panels/content_types/content_field.inc:100',
+  'textgroup' => 'default',
+  'source' => 'Block title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '186',
+  'location' => 'includes/panels/content_types/content_field.inc:103',
+  'textgroup' => 'default',
+  'source' => 'Hidden',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '187',
+  'location' => 'includes/panels/content_types/content_field.inc:105',
+  'textgroup' => 'default',
+  'source' => 'Configure how the label is going to be displayed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '188',
+  'location' => 'includes/content.panels.inc:73',
+  'textgroup' => 'default',
+  'source' => 'Field / Formatter',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '189',
+  'location' => 'includes/content.panels.inc:76',
+  'textgroup' => 'default',
+  'source' => 'Select a field and formatter.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '190',
+  'location' => 'includes/content.panels.inc:92',
+  'textgroup' => 'default',
+  'source' => '"@s" field @name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '191',
+  'location' => 'includes/content.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Populate a field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '192',
+  'location' => 'includes/content.rules.inc:23;224',
+  'textgroup' => 'default',
+  'source' => 'You should make sure that the used field exists in the given content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '193',
+  'location' => 'includes/content.rules.inc:53;276,  modules/nodereference/nodereference.rules.inc:45,  modules/userreference/userreference.rules.inc:47',
+  'textgroup' => 'default',
+  'source' => 'Field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '194',
+  'location' => 'includes/content.rules.inc:56',
+  'textgroup' => 'default',
+  'source' => 'Select the machine-name of the field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '195',
+  'location' => 'includes/content.rules.inc:84',
+  'textgroup' => 'default',
+  'source' => 'Advanced: Specify the fields value with PHP code',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '196',
+  'location' => 'not literally,  includes/content.rules.inc:102',
+  'textgroup' => 'default',
+  'source' => "Advanced usage only: PHP code that returns the value to set. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>Using <a href=\"@link_devel\">devel.module's</a> 'devel load' tab on a content page might help you figure out the expected format.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '197',
+  'location' => 'includes/content.rules.inc:130',
+  'textgroup' => 'default',
+  'source' => 'You have to return the default value in the expected format.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '198',
+  'location' => 'includes/content.rules.inc:193',
+  'textgroup' => 'default',
+  'source' => "Populate @node's field '@field'",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '199',
+  'location' => 'includes/content.rules.inc:210',
+  'textgroup' => 'default',
+  'source' => 'Field has value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '200',
+  'location' => 'includes/content.rules.inc:215',
+  'textgroup' => 'default',
+  'source' => 'You should make sure that the used field exists in the given content type. The condition returns TRUE, if the selected field has the given value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '201',
+  'location' => 'includes/content.rules.inc:219',
+  'textgroup' => 'default',
+  'source' => 'Field has changed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '202',
+  'location' => 'includes/content.rules.inc:221',
+  'textgroup' => 'default',
+  'source' => 'Content containing changes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '203',
+  'location' => 'includes/content.rules.inc:222',
+  'textgroup' => 'default',
+  'source' => 'Content not containing changes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '204',
+  'location' => 'includes/content.rules.inc:259',
+  'textgroup' => 'default',
+  'source' => "@node's field '@field' has value",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '205',
+  'location' => 'not literally,  includes/content.rules.inc:279,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Select the machine-name of the field to look at.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '206',
+  'location' => '@node?,  includes/content.rules.inc:285',
+  'textgroup' => 'default',
+  'source' => "@node's field '@field' has been changed",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '207',
+  'location' => 'includes/content.token.inc:12;15',
+  'textgroup' => 'default',
+  'source' => 'Token',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '208',
+  'location' => 'includes/content.token.inc:81',
+  'textgroup' => 'default',
+  'source' => 'Referenced node ID',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '209',
+  'location' => 'includes/content.token.inc:82',
+  'textgroup' => 'default',
+  'source' => 'Referenced node title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '210',
+  'location' => 'includes/content.token.inc:83',
+  'textgroup' => 'default',
+  'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '211',
+  'location' => 'includes/content.token.inc:84',
+  'textgroup' => 'default',
+  'source' => 'Formatted html link to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '212',
+  'location' => 'includes/content.token.inc:85',
+  'textgroup' => 'default',
+  'source' => 'Relative path alias to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '213',
+  'location' => 'includes/content.token.inc:86',
+  'textgroup' => 'default',
+  'source' => 'Absolute path alias to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '214',
+  'location' => 'includes/content.token.inc:114',
+  'textgroup' => 'default',
+  'source' => 'Raw number value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '215',
+  'location' => 'includes/content.token.inc:115',
+  'textgroup' => 'default',
+  'source' => 'Formatted number value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '216',
+  'location' => 'includes/content.token.inc:138',
+  'textgroup' => 'default',
+  'source' => 'Raw, unfiltered text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '217',
+  'location' => 'includes/content.token.inc:139',
+  'textgroup' => 'default',
+  'source' => 'Formatted and filtered text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '218',
+  'location' => 'includes/content.token.inc:161',
+  'textgroup' => 'default',
+  'source' => 'Referenced user ID',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '219',
+  'location' => 'includes/content.token.inc:162',
+  'textgroup' => 'default',
+  'source' => 'Referenced user name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '220',
+  'location' => 'includes/content.token.inc:163',
+  'textgroup' => 'default',
+  'source' => 'Formatted HTML link to referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '221',
+  'location' => 'includes/content.token.inc:164',
+  'textgroup' => 'default',
+  'source' => 'Relative path alias to the referenced user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '222',
+  'location' => 'includes/content.token.inc:165',
+  'textgroup' => 'default',
+  'source' => 'Absolute path alias to the referenced user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '223',
+  'location' => 'includes/views/content.views.inc:245;261',
+  'textgroup' => 'default',
+  'source' => '@label (!name)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '224',
+  'location' => 'includes/views/content.views.inc:249',
+  'textgroup' => 'default',
+  'source' => '@label (!name) - !column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '225',
+  'location' => 'includes/views/content.views.inc:250',
+  'textgroup' => 'default',
+  'source' => '@label-truncated - !column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '226',
+  'location' => 'includes/views/content.views.inc:257',
+  'textgroup' => 'default',
+  'source' => 'Appears in: @types',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '227',
+  'location' => 'includes/views/handlers/content_handler_field.inc:56',
+  'textgroup' => 'default',
+  'source' => 'None',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '228',
+  'location' => 'includes/views/handlers/content_handler_field.inc:57',
+  'textgroup' => 'default',
+  'source' => 'Widget label (@label)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '229',
+  'location' => 'includes/views/handlers/content_handler_field.inc:58',
+  'textgroup' => 'default',
+  'source' => 'Custom',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '230',
+  'location' => 'includes/views/handlers/content_handler_field.inc:64',
+  'textgroup' => 'default',
+  'source' => 'Custom label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '231',
+  'location' => 'includes/views/handlers/content_handler_field.inc:80',
+  'textgroup' => 'default',
+  'source' => 'Format',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '232',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
+  'textgroup' => 'default',
+  'source' => 'Group multiple values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '233',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
+  'textgroup' => 'default',
+  'source' => 'If unchecked, each item in the field will create a new row, which may appear to cause duplicates. This setting is not compatible with click-sorting in table displays.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '234',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
+  'textgroup' => 'default',
+  'source' => 'Show @count value(s)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '235',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
+  'textgroup' => 'default',
+  'source' => 'starting from @count',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '236',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
+  'textgroup' => 'default',
+  'source' => 'Reversed (start from last values)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '237',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
+  'textgroup' => 'default',
+  'source' => 'All',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '238',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
+  'textgroup' => 'default',
+  'source' => 'Delta',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '239',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
+  'textgroup' => 'default',
+  'source' => 'The delta allows you to select which item in a multiple value field to key the relationship off of. Select "1" to use the first item, "2" for the second item, and so on. If you select "All", each item in the field will create a new row, which may appear to cause duplicates.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '240',
+  'location' => 'includes/views/handlers/content_handler_sort.inc:50',
+  'textgroup' => 'default',
+  'source' => 'The delta allows you to select which item in a multiple value field will be used for sorting. Select "1" to use the first item, "2" for the second item, and so on. If you select "All", each item in the field will create a new row, which may appear to cause duplicates.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '241',
+  'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
+  'textgroup' => 'default',
+  'source' => 'Export',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '242',
+  'location' => 'modules/content_copy/content_copy.module:97',
+  'textgroup' => 'default',
+  'source' => 'This form will process a content type and one or more fields from that type and export the settings. The export created by this process can be copied and pasted as an import into the current or any other database. The import will add the fields to into an existing content type or create a new content type that includes the selected fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '243',
+  'location' => 'modules/content_copy/content_copy.module:103',
+  'textgroup' => 'default',
+  'source' => 'Types',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '244',
+  'location' => 'modules/content_copy/content_copy.module:107',
+  'textgroup' => 'default',
+  'source' => 'Select the content type to export.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '245',
+  'location' => 'modules/content_copy/content_copy.module:175',
+  'textgroup' => 'default',
+  'source' => 'Export data',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '246',
+  'location' => 'modules/content_copy/content_copy.module:180',
+  'textgroup' => 'default',
+  'source' => 'Copy the export text and paste it into another content type using the import function.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '247',
+  'location' => 'content_admin.inc:42',
+  'textgroup' => 'default',
+  'source' => 'Content types',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '248',
+  'location' => 'modules/content_copy/content_copy.module:308',
+  'textgroup' => 'default',
+  'source' => 'Content type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '249',
+  'location' => 'modules/content_copy/content_copy.module:309',
+  'textgroup' => 'default',
+  'source' => 'Select the content type to import these fields into.<br/>Select &lt;Create&gt; to create a new content type to contain the fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '250',
+  'location' => 'modules/content_copy/content_copy.module:314',
+  'textgroup' => 'default',
+  'source' => 'Import data',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '251',
+  'location' => 'modules/content_copy/content_copy.module:316',
+  'textgroup' => 'default',
+  'source' => 'Paste the text created by a content export into this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '252',
+  'location' => 'modules/content_copy/content_copy.module:320;46',
+  'textgroup' => 'default',
+  'source' => 'Import',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '253',
+  'location' => 'modules/content_copy/content_copy.module:328',
+  'textgroup' => 'default',
+  'source' => 'A file has been pre-loaded for import.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '254',
+  'location' => 'modules/content_copy/content_copy.module:354',
+  'textgroup' => 'default',
+  'source' => 'The import data is not valid import text.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '255',
+  'location' => 'modules/content_copy/content_copy.module:403',
+  'textgroup' => 'default',
+  'source' => 'The following modules must be enabled for this import to work: %modules.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '256',
+  'location' => 'modules/content_copy/content_copy.module:411',
+  'textgroup' => 'default',
+  'source' => 'The content type %type already exists in this database.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '257',
+  'location' => 'modules/content_copy/content_copy.module:418',
+  'textgroup' => 'default',
+  'source' => 'Exiting. No import performed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '258',
+  'location' => 'modules/content_copy/content_copy.module:442',
+  'textgroup' => 'default',
+  'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '259',
+  'location' => 'modules/content_copy/content_copy.module:467',
+  'textgroup' => 'default',
+  'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '260',
+  'location' => 'modules/content_copy/content_copy.module:476',
+  'textgroup' => 'default',
+  'source' => 'The field %field_label (%field_name) was added to the content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '261',
+  'location' => 'modules/content_copy/content_copy.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_copy',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '262',
+  'location' => 'modules/content_copy/content_copy.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Copy',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '263',
+  'location' => 'modules/content_copy/content_copy.info:0',
+  'textgroup' => 'default',
+  'source' => 'Enables ability to import/export field definitions.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '264',
+  'location' => 'modules/content_multigroup/content_multigroup.module:12',
+  'textgroup' => 'default',
+  'source' => 'The fields in a Standard group are independent of each other and each can have either single or multiple values. The fields in a Multigroup are treated as a repeating collection of single value fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '265',
+  'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
+  'textgroup' => 'default',
+  'source' => 'Multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '266',
+  'location' => 'modules/content_multigroup/content_multigroup.module:134',
+  'textgroup' => 'default',
+  'source' => 'Standard',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '267',
+  'location' => 'includes/content.admin.inc:344,  modules/content_multigroup/content_multigroup.module:126',
+  'textgroup' => 'default',
+  'source' => 'Type of group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '268',
+  'location' => 'modules/content_multigroup/content_multigroup.module:215',
+  'textgroup' => 'default',
+  'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '269',
+  'location' => 'modules/content_multigroup/content_multigroup.module:248',
+  'textgroup' => 'default',
+  'source' => 'This change is not allowed. The field %field already has %multiple values in the database but the group %group only allows %group_max. Making this change would result in the loss of data.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '270',
+  'location' => 'modules/content_multigroup/content_multigroup.module:272',
+  'textgroup' => 'default',
+  'source' => 'This change is not allowed. The field %field handles multiple values differently than the Content module. Making this change could result in the loss of data.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '271',
+  'location' => 'modules/content_multigroup/content_multigroup.module:287',
+  'textgroup' => 'default',
+  'source' => 'You are moving the field %field into a Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '272',
+  'location' => 'modules/content_multigroup/content_multigroup.module:320',
+  'textgroup' => 'default',
+  'source' => 'This change is not allowed. The field %field already has data created and uses a widget that stores data differently in a Standard group than in a Multigroup. Making this change could result in the loss of data.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '273',
+  'location' => 'modules/content_multigroup/content_multigroup.module:334',
+  'textgroup' => 'default',
+  'source' => 'You are moving the field %field out of a Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '274',
+  'location' => 'modules/content_multigroup/content_multigroup.module:369',
+  'textgroup' => 'default',
+  'source' => 'Simple',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '275',
+  'location' => 'modules/content_multigroup/content_multigroup.module:370',
+  'textgroup' => 'default',
+  'source' => 'Fieldset',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '276',
+  'location' => 'modules/content_multigroup/content_multigroup.module:371',
+  'textgroup' => 'default',
+  'source' => 'Horizontal line',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '277',
+  'location' => 'modules/content_multigroup/content_multigroup.module:372',
+  'textgroup' => 'default',
+  'source' => 'Table - Single column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '278',
+  'location' => 'modules/content_multigroup/content_multigroup.module:373',
+  'textgroup' => 'default',
+  'source' => 'Table - Multiple columns',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '279',
+  'location' => 'modules/content_multigroup/content_multigroup.module:384',
+  'textgroup' => 'default',
+  'source' => '[Subgroup format]',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '280',
+  'location' => 'modules/content_multigroup/content_multigroup.module:461',
+  'textgroup' => 'default',
+  'source' => 'Multigroup settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '281',
+  'location' => 'modules/content_multigroup/content_multigroup.module:476',
+  'textgroup' => 'default',
+  'source' => 'Multiple columns',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '282',
+  'location' => 'modules/content_multigroup/content_multigroup.module:478',
+  'textgroup' => 'default',
+  'source' => 'Enable this option to render each field on a separate column on the node edit form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '283',
+  'location' => 'modules/content_multigroup/content_multigroup.module:485',
+  'textgroup' => 'default',
+  'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '284',
+  'location' => 'modules/content_multigroup/content_multigroup.module:488',
+  'textgroup' => 'default',
+  'source' => 'Number of times to repeat the collection of Multigroup fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '285',
+  'location' => 'modules/content_multigroup/content_multigroup.module:489',
+  'textgroup' => 'default',
+  'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '286',
+  'location' => 'modules/content_multigroup/content_multigroup.module:490',
+  'textgroup' => 'default',
+  'source' => 'All fields in this group will automatically be set to allow this number of values.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '287',
+  'location' => 'modules/content_multigroup/content_multigroup.module:495',
+  'textgroup' => 'default',
+  'source' => 'Number of repeats',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '288',
+  'location' => 'modules/content_multigroup/content_multigroup.module:503',
+  'textgroup' => 'default',
+  'source' => 'Labels',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '289',
+  'location' => 'modules/content_multigroup/content_multigroup.module:504',
+  'textgroup' => 'default',
+  'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '290',
+  'location' => 'modules/content_multigroup/content_multigroup.module:512',
+  'textgroup' => 'default',
+  'source' => 'Subgroup %number label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '291',
+  'location' => 'modules/content_multigroup/content_multigroup.module:539',
+  'textgroup' => 'default',
+  'source' => 'The field %field in this group already has %multiple values in the database. To prevent the loss of data you cannot set the number of Multigroup values to less than this.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '292',
+  'location' => 'modules/content_multigroup/content_multigroup.module:932',
+  'textgroup' => 'default',
+  'source' => '!name field is required in group @group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '293',
+  'location' => 'modules/content_multigroup/content_multigroup.module:946',
+  'textgroup' => 'default',
+  'source' => 'Group @name requires one collection of fields minimum.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '294',
+  'location' => 'modules/content_multigroup/content_multigroup.module:1145',
+  'textgroup' => 'default',
+  'source' => 'Add more values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '295',
+  'location' => 'modules/content_multigroup/content_multigroup.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '296',
+  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '297',
+  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '298',
+  'location' => 'modules/content_permissions/content_permissions.module:10',
+  'textgroup' => 'default',
+  'source' => 'edit',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '299',
+  'location' => 'modules/content_permissions/content_permissions.module:10;11',
+  'textgroup' => 'default',
+  'source' => 'field_name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '300',
+  'location' => 'modules/content_permissions/content_permissions.module:11',
+  'textgroup' => 'default',
+  'source' => 'view',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '301',
+  'location' => 'modules/content_permissions/content_permissions.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_permissions',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '302',
+  'location' => 'modules/content_permissions/content_permissions.install:9',
+  'textgroup' => 'default',
+  'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '303',
+  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Permissions',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '304',
+  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'textgroup' => 'default',
+  'source' => 'Set field-level permissions for CCK fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '305',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
+  'textgroup' => 'default',
+  'source' => 'Content fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '306',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
+  'textgroup' => 'default',
+  'source' => 'All fields from a fieldgroup on the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '307',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
+  'textgroup' => 'default',
+  'source' => '@group_label (@group_type_name)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '308',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '309',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
+  'textgroup' => 'default',
+  'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '310',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
+  'textgroup' => 'default',
+  'source' => '"@s" fieldgroup @name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '311',
+  'location' => 'modules/fieldgroup/fieldgroup.module:124',
+  'textgroup' => 'default',
+  'source' => 'Form settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '312',
+  'location' => 'modules/fieldgroup/fieldgroup.module:125',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the group in the node editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '313',
+  'location' => 'modules/fieldgroup/fieldgroup.module:129',
+  'textgroup' => 'default',
+  'source' => 'Style',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '314',
+  'location' => 'modules/fieldgroup/fieldgroup.module:132',
+  'textgroup' => 'default',
+  'source' => 'always open',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '315',
+  'location' => 'modules/fieldgroup/fieldgroup.module:133',
+  'textgroup' => 'default',
+  'source' => 'collapsible',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '316',
+  'location' => 'modules/fieldgroup/fieldgroup.module:134',
+  'textgroup' => 'default',
+  'source' => 'collapsed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '317',
+  'location' => 'modules/fieldgroup/fieldgroup.module:142',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user on the editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '318',
+  'location' => 'modules/fieldgroup/fieldgroup.module:147',
+  'textgroup' => 'default',
+  'source' => 'Display settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '319',
+  'location' => 'modules/fieldgroup/fieldgroup.module:148',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the group on node display.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '320',
+  'location' => 'modules/fieldgroup/fieldgroup.module:155',
+  'textgroup' => 'default',
+  'source' => 'A description of the group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '321',
+  'location' => 'modules/fieldgroup/fieldgroup.module:200',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to remove the group %label?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '322',
+  'location' => 'modules/fieldgroup/fieldgroup.module:202',
+  'textgroup' => 'default',
+  'source' => 'This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '323',
+  'location' => 'modules/fieldgroup/fieldgroup.module:211',
+  'textgroup' => 'default',
+  'source' => 'The group %group_name has been removed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '324',
+  'location' => 'modules/content_multigroup/content_multigroup.module:356,  modules/fieldgroup/fieldgroup.module:266',
+  'textgroup' => 'default',
+  'source' => 'none',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '325',
+  'location' => 'modules/fieldgroup/fieldgroup.module:353',
+  'textgroup' => 'default',
+  'source' => 'You need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '326',
+  'location' => 'modules/fieldgroup/fieldgroup.module:358',
+  'textgroup' => 'default',
+  'source' => 'You need to provide a group name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '327',
+  'location' => 'modules/fieldgroup/fieldgroup.module:372',
+  'textgroup' => 'default',
+  'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '328',
+  'location' => 'modules/fieldgroup/fieldgroup.module:375',
+  'textgroup' => 'default',
+  'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '329',
+  'location' => 'modules/fieldgroup/fieldgroup.module:381',
+  'textgroup' => 'default',
+  'source' => 'The group name %group_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '330',
+  'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
+  'textgroup' => 'default',
+  'source' => 'Add new group:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '331',
+  'location' => 'modules/fieldgroup/fieldgroup.module:418',
+  'textgroup' => 'default',
+  'source' => 'Add new group: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '332',
+  'location' => 'modules/fieldgroup/fieldgroup.module:419',
+  'textgroup' => 'default',
+  'source' => 'Add new group: you need to provide a group name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '333',
+  'location' => 'modules/fieldgroup/fieldgroup.module:648',
+  'textgroup' => 'default',
+  'source' => 'Standard group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '334',
+  'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
+  'textgroup' => 'default',
+  'source' => 'Edit group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '335',
+  'location' => 'modules/fieldgroup/fieldgroup.module:0',
+  'textgroup' => 'default',
+  'source' => 'fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '336',
+  'location' => 'modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Create display groups for CCK fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '337',
+  'location' => 'modules/nodereference/nodereference.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Load a referenced node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '338',
+  'location' => 'modules/nodereference/nodereference.rules.inc:19',
+  'textgroup' => 'default',
+  'source' => 'Content containing the node reference field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '339',
+  'location' => 'modules/nodereference/nodereference.rules.inc:25',
+  'textgroup' => 'default',
+  'source' => 'Referenced content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '340',
+  'location' => 'modules/nodereference/nodereference.rules.inc:29',
+  'textgroup' => 'default',
+  'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '341',
+  'location' => 'modules/nodereference/nodereference.rules.inc:50',
+  'textgroup' => 'default',
+  'source' => 'There are no nodereference fields defined.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '342',
+  'location' => 'modules/nodereference/nodereference.module:71',
+  'textgroup' => 'default',
+  'source' => 'Node reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '343',
+  'location' => 'modules/nodereference/nodereference.module:72',
+  'textgroup' => 'default',
+  'source' => 'Store the ID of a related node as an integer value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '344',
+  'location' => 'modules/nodereference/nodereference.module:90',
+  'textgroup' => 'default',
+  'source' => 'Content types that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '345',
+  'location' => 'modules/nodereference/nodereference.module:97,  modules/userreference/userreference.module:94',
+  'textgroup' => 'default',
+  'source' => 'Default Views',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '346',
+  'location' => 'modules/nodereference/nodereference.module:101',
+  'textgroup' => 'default',
+  'source' => 'Existing Views',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '347',
+  'location' => 'modules/nodereference/nodereference.module:108',
+  'textgroup' => 'default',
+  'source' => 'Advanced - Nodes that can be referenced (View)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '348',
+  'location' => 'modules/nodereference/nodereference.module:114',
+  'textgroup' => 'default',
+  'source' => 'View used to select the nodes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '349',
+  'location' => 'modules/nodereference/nodereference.module:107',
+  'textgroup' => 'default',
+  'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '350',
+  'location' => 'modules/nodereference/nodereference.module:108;121',
+  'textgroup' => 'default',
+  'source' => "<ul><li>Only views that have fields will work for this purpose.</li><li>This will discard the \"Content types\" settings above. Use the view's \"filters\" section instead.</li><li>Use the view's \"fields\" section to display additional informations about candidate nodes on node creation/edition form.</li><li>Use the view's \"sort criteria\" section to determine the order in which candidate nodes will be displayed.</li></ul>",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '351',
+  'location' => 'modules/nodereference/nodereference.module:121',
+  'textgroup' => 'default',
+  'source' => 'View arguments',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '352',
+  'location' => 'modules/nodereference/nodereference.module:124',
+  'textgroup' => 'default',
+  'source' => 'Provide a comma separated list of arguments to pass to the view.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '353',
+  'location' => 'modules/nodereference/nodereference.module:120',
+  'textgroup' => 'default',
+  'source' => '<p>The list of nodes that can be referenced can be based on a "Views module" view but no appropriate views were found. <br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '354',
+  'location' => 'modules/nodereference/nodereference.module:216,  modules/userreference/userreference.module:195',
+  'textgroup' => 'default',
+  'source' => '%name: invalid input.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '355',
+  'location' => 'modules/nodereference/nodereference.module:217',
+  'textgroup' => 'default',
+  'source' => "%name: this post can't be referenced.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '356',
+  'location' => 'modules/nodereference/nodereference.module:200',
+  'textgroup' => 'default',
+  'source' => 'Title (link)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '357',
+  'location' => 'modules/nodereference/nodereference.module:205',
+  'textgroup' => 'default',
+  'source' => 'Title (no link)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '358',
+  'location' => 'modules/nodereference/nodereference.module:358,  modules/optionwidgets/optionwidgets.module:80,  modules/userreference/userreference.module:284',
+  'textgroup' => 'default',
+  'source' => 'Select list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '359',
+  'location' => 'modules/nodereference/nodereference.module:366,  modules/optionwidgets/optionwidgets.module:88,  modules/userreference/userreference.module:292',
+  'textgroup' => 'default',
+  'source' => 'Check boxes/radio buttons',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '360',
+  'location' => 'modules/nodereference/nodereference.module:374,  modules/userreference/userreference.module:300',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete text field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '361',
+  'location' => 'modules/nodereference/nodereference.module:429,  modules/userreference/userreference.module:355',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete matching',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '362',
+  'location' => 'modules/nodereference/nodereference.module:432,  modules/userreference/userreference.module:358',
+  'textgroup' => 'default',
+  'source' => 'Starts with',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '363',
+  'location' => 'modules/nodereference/nodereference.module:433,  modules/userreference/userreference.module:359',
+  'textgroup' => 'default',
+  'source' => 'Contains',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '364',
+  'location' => 'modules/nodereference/nodereference.module:423',
+  'textgroup' => 'default',
+  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '365',
+  'location' => 'modules/nodereference/nodereference.module:671',
+  'textgroup' => 'default',
+  'source' => '%name: title mismatch. Please check your selection.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '366',
+  'location' => 'modules/nodereference/nodereference.module:678',
+  'textgroup' => 'default',
+  'source' => '%name: found no valid post with that title.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '367',
+  'location' => 'modules/nodereference/nodereference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Nodereference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '368',
+  'location' => 'modules/nodereference/nodereference.module:0',
+  'textgroup' => 'default',
+  'source' => 'nodereference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '369',
+  'location' => 'modules/nodereference/nodereference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Node Reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '370',
+  'location' => 'modules/nodereference/nodereference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing one node from another.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '371',
+  'location' => 'modules/number/number.module:34',
+  'textgroup' => 'default',
+  'source' => 'Integer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '372',
+  'location' => 'modules/number/number.module:35',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database as an integer.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '373',
+  'location' => 'modules/number/number.module:38',
+  'textgroup' => 'default',
+  'source' => 'Decimal',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '374',
+  'location' => 'modules/number/number.module:39',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database in a fixed decimal format.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '375',
+  'location' => 'modules/number/number.module:42',
+  'textgroup' => 'default',
+  'source' => 'Float',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '376',
+  'location' => 'modules/number/number.module:43',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database in a floating point format.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '377',
+  'location' => 'modules/number/number.module:57',
+  'textgroup' => 'default',
+  'source' => 'Minimum',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '378',
+  'location' => 'modules/number/number.module:63',
+  'textgroup' => 'default',
+  'source' => 'Maximum',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '379',
+  'location' => 'modules/number/number.module:71',
+  'textgroup' => 'default',
+  'source' => 'Precision',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '380',
+  'location' => 'modules/number/number.module:72',
+  'textgroup' => 'default',
+  'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '381',
+  'location' => 'modules/number/number.module:78',
+  'textgroup' => 'default',
+  'source' => 'Scale',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '382',
+  'location' => 'modules/number/number.module:79',
+  'textgroup' => 'default',
+  'source' => 'The number of digits to the right of the decimal.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '383',
+  'location' => 'modules/number/number.module:85',
+  'textgroup' => 'default',
+  'source' => 'Decimal marker',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '384',
+  'location' => 'modules/number/number.module:86',
+  'textgroup' => 'default',
+  'source' => 'The character users will input to mark the decimal point in forms.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '385',
+  'location' => 'modules/number/number.module:92',
+  'textgroup' => 'default',
+  'source' => 'Prefix',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '386',
+  'location' => 'modules/number/number.module:95',
+  'textgroup' => 'default',
+  'source' => 'Define a string that should be prefixed to the value, like $ or €. Leave blank for none. Separate singular and plural values with a pipe (pound|pounds).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '387',
+  'location' => 'modules/number/number.module:99',
+  'textgroup' => 'default',
+  'source' => 'Suffix',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '388',
+  'location' => 'modules/number/number.module:102',
+  'textgroup' => 'default',
+  'source' => 'Define a string that should suffixed to the value, like m², m/s², kb/s. Leave blank for none. Separate singular and plural values with a pipe (pound|pounds).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '389',
+  'location' => 'modules/number/number.module:109,  modules/text/text.module:72',
+  'textgroup' => 'default',
+  'source' => 'Allowed values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '390',
+  'location' => 'modules/number/number.module:115,  modules/text/text.module:78',
+  'textgroup' => 'default',
+  'source' => 'Allowed values list',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '391',
+  'location' => 'modules/number/number.module:119,  modules/text/text.module:82',
+  'textgroup' => 'default',
+  'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database, and it must match the field storage type (%type). The label is optional, and the key will be used as the label if no label is specified.<br />Allowed HTML tags: @tags',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '392',
+  'location' => 'modules/number/number.module:133,  modules/text/text.module:96',
+  'textgroup' => 'default',
+  'source' => 'Advanced usage only: PHP code that returns a keyed array of allowed values. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the array returned by this code will override the allowed values list above.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '393',
+  'location' => 'modules/number/number.module:141,  modules/text/text.module:104',
+  'textgroup' => 'default',
+  'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '394',
+  'location' => 'modules/number/number.module:181,  modules/text/text.module:133',
+  'textgroup' => 'default',
+  'source' => '@label (!name) - Allowed values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '395',
+  'location' => 'modules/number/number.module:195',
+  'textgroup' => 'default',
+  'source' => '"Minimum" must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '396',
+  'location' => 'modules/number/number.module:202',
+  'textgroup' => 'default',
+  'source' => '"Maximum" must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '397',
+  'location' => 'modules/number/number.module:219',
+  'textgroup' => 'default',
+  'source' => '%name: the value may be no smaller than %min.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '398',
+  'location' => 'modules/number/number.module:222',
+  'textgroup' => 'default',
+  'source' => '%name: the value may be no larger than %max.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '399',
+  'location' => 'modules/number/number.module:238,  modules/text/text.module:157',
+  'textgroup' => 'default',
+  'source' => '%name: illegal value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '400',
+  'location' => 'modules/number/number.module:270',
+  'textgroup' => 'default',
+  'source' => 'unformatted',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '401',
+  'location' => 'modules/number/number.module:356,  modules/text/text.module:257',
+  'textgroup' => 'default',
+  'source' => 'Text field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '402',
+  'location' => 'Float validation: English needs work,  modules/number/number.module:509,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and decimals are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '403',
+  'location' => 'Integer validation: English needs work,  modules/number/number.module:532,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '404',
+  'location' => 'Decimal validation with decimal character: English needs work,  modules/number/number.module:556,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '405',
+  'location' => 'modules/number/number.module:0',
+  'textgroup' => 'default',
+  'source' => 'number',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '406',
+  'location' => 'modules/number/number.info:0',
+  'textgroup' => 'default',
+  'source' => 'Number',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '407',
+  'location' => 'modules/number/number.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines numeric field types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '408',
+  'location' => 'modules/optionwidgets/optionwidgets.module:19',
+  'textgroup' => 'default',
+  'source' => 'Create a list of options as a list in <strong>Allowed values list</strong> or as an array in PHP code. These values will be the same for %field in all content types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '409',
+  'location' => 'modules/optionwidgets/optionwidgets.module:22',
+  'textgroup' => 'default',
+  'source' => "For a 'single on/off checkbox' widget, define the 'off' value first, then the 'on' value in the <strong>Allowed values</strong> section. Note that the checkbox will be labeled with the label of the 'on' value.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '410',
+  'location' => 'modules/optionwidgets/optionwidgets.module:25',
+  'textgroup' => 'default',
+  'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '411',
+  'location' => 'modules/optionwidgets/optionwidgets.module:37',
+  'textgroup' => 'default',
+  'source' => "You need to specify the 'allowed values' for this field.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '412',
+  'location' => 'modules/optionwidgets/optionwidgets.module:96',
+  'textgroup' => 'default',
+  'source' => 'Single on/off checkbox',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '413',
+  'location' => 'modules/optionwidgets/optionwidgets.module:331',
+  'textgroup' => 'default',
+  'source' => '%name: this field cannot hold more that @count values.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '414',
+  'location' => 'modules/optionwidgets/optionwidgets.module:411',
+  'textgroup' => 'default',
+  'source' => 'N/A',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '415',
+  'location' => 'modules/optionwidgets/optionwidgets.module:415',
+  'textgroup' => 'default',
+  'source' => '- None -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '416',
+  'location' => 'modules/optionwidgets/optionwidgets.module:0',
+  'textgroup' => 'default',
+  'source' => 'optionwidgets',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '417',
+  'location' => 'modules/optionwidgets/optionwidgets.info:0',
+  'textgroup' => 'default',
+  'source' => 'Option Widgets',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '418',
+  'location' => 'modules/optionwidgets/optionwidgets.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '419',
+  'location' => 'modules/text/text.module:42',
+  'textgroup' => 'default',
+  'source' => 'Store text in the database.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '420',
+  'location' => 'modules/text/text.module:55;202,  modules/userreference/userreference.module:237',
+  'textgroup' => 'default',
+  'source' => 'Plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '421',
+  'location' => 'modules/text/text.module:55',
+  'textgroup' => 'default',
+  'source' => 'Filtered text (user selects input format)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '422',
+  'location' => 'modules/text/text.module:58',
+  'textgroup' => 'default',
+  'source' => 'Text processing',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '423',
+  'location' => 'modules/text/text.module:64',
+  'textgroup' => 'default',
+  'source' => 'Maximum length',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '424',
+  'location' => 'modules/text/text.module:68',
+  'textgroup' => 'default',
+  'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '425',
+  'location' => 'modules/text/text.module:160',
+  'textgroup' => 'default',
+  'source' => '%name: the value may not be longer than %max characters.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '426',
+  'location' => 'modules/text/text.module:197,  modules/userreference/userreference.module:232',
+  'textgroup' => 'default',
+  'source' => 'Default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '427',
+  'location' => 'modules/text/text.module:207',
+  'textgroup' => 'default',
+  'source' => 'Trimmed',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '428',
+  'location' => 'modules/text/text.module:265',
+  'textgroup' => 'default',
+  'source' => 'Text area (multiple rows)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '429',
+  'location' => 'modules/nodereference/nodereference.module:439,  modules/text/text.module:317,  modules/userreference/userreference.module:365',
+  'textgroup' => 'default',
+  'source' => 'Size of textfield',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '430',
+  'location' => 'modules/text/text.module:326',
+  'textgroup' => 'default',
+  'source' => 'Rows',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '431',
+  'location' => 'modules/text/text.module:0',
+  'textgroup' => 'default',
+  'source' => 'text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '432',
+  'location' => 'modules/text/text.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines simple text field types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '433',
+  'location' => 'modules/userreference/userreference.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Load a referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '434',
+  'location' => 'modules/userreference/userreference.rules.inc:19',
+  'textgroup' => 'default',
+  'source' => 'Content containing the user reference field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '435',
+  'location' => 'modules/userreference/userreference.rules.inc:25',
+  'textgroup' => 'default',
+  'source' => 'Referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '436',
+  'location' => 'modules/userreference/userreference.rules.inc:29',
+  'textgroup' => 'default',
+  'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '437',
+  'location' => 'modules/userreference/userreference.rules.inc:52',
+  'textgroup' => 'default',
+  'source' => 'There are no userreference fields defined.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '438',
+  'location' => 'modules/userreference/userreference.module:52',
+  'textgroup' => 'default',
+  'source' => 'User reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '439',
+  'location' => 'modules/userreference/userreference.module:53',
+  'textgroup' => 'default',
+  'source' => 'Store the ID of a related user as an integer value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '440',
+  'location' => 'modules/userreference/userreference.module:67',
+  'textgroup' => 'default',
+  'source' => 'User roles that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '441',
+  'location' => 'modules/userreference/userreference.module:73',
+  'textgroup' => 'default',
+  'source' => 'User status that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '442',
+  'location' => 'modules/userreference/userreference.module:75',
+  'textgroup' => 'default',
+  'source' => 'Active',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '443',
+  'location' => 'modules/userreference/userreference.module:75',
+  'textgroup' => 'default',
+  'source' => 'Blocked',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '444',
+  'location' => 'modules/userreference/userreference.module:94',
+  'textgroup' => 'default',
+  'source' => 'Advanced - Users that can be referenced (View)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '445',
+  'location' => 'modules/userreference/userreference.module:101',
+  'textgroup' => 'default',
+  'source' => 'View used to select the users',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '446',
+  'location' => 'modules/userreference/userreference.module:104',
+  'textgroup' => 'default',
+  'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '447',
+  'location' => 'modules/userreference/userreference.module:105;118',
+  'textgroup' => 'default',
+  'source' => "<ul><li>Only views that have fields will work for this purpose.</li><li>This will discard the \"Referenceable Roles\" and \"Referenceable Status\" settings above. Use the view's \"filters\" section instead.</li><li>Use the view's \"fields\" section to display additional informations about candidate users on user creation/edition form.</li><li>Use the view's \"sort criteria\" section to determine the order in which candidate users will be displayed.</li></ul>",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '448',
+  'location' => 'modules/userreference/userreference.module:117',
+  'textgroup' => 'default',
+  'source' => '<p>The list of user that can be referenced can be based on a "Views module" view but no appropriate views were found. <br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '449',
+  'location' => 'modules/userreference/userreference.module:196',
+  'textgroup' => 'default',
+  'source' => '%name: invalid user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '450',
+  'location' => 'modules/userreference/userreference.module:349',
+  'textgroup' => 'default',
+  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '451',
+  'location' => 'modules/userreference/userreference.module:357',
+  'textgroup' => 'default',
+  'source' => 'Reverse link',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '452',
+  'location' => 'modules/userreference/userreference.module:359',
+  'textgroup' => 'default',
+  'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '453',
+  'location' => 'modules/userreference/userreference.module:594',
+  'textgroup' => 'default',
+  'source' => '%name: found no valid user with that name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '454',
+  'location' => 'modules/userreference/userreference.module:887',
+  'textgroup' => 'default',
+  'source' => 'Related content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '455',
+  'location' => 'modules/userreference/userreference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Userreference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '456',
+  'location' => 'userreference.module:0',
+  'textgroup' => 'default',
+  'source' => 'userreference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '457',
+  'location' => 'modules/userreference/userreference.info:0',
+  'textgroup' => 'default',
+  'source' => 'User Reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '458',
+  'location' => 'modules/userreference/userreference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing a user from a node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '459',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
+  'textgroup' => 'default',
+  'source' => 'Weight',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '460',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
+  'textgroup' => 'default',
+  'source' => 'Add',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '461',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
+  'textgroup' => 'default',
+  'source' => 'New field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '462',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
+  'textgroup' => 'default',
+  'source' => 'Existing field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '463',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
+  'textgroup' => 'default',
+  'source' => 'New group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '464',
+  'location' => 'theme/theme.inc:11',
+  'textgroup' => 'default',
+  'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '465',
+  'location' => 'theme/theme.inc:13',
+  'textgroup' => 'default',
+  'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '466',
+  'location' => 'theme/theme.inc:16',
+  'textgroup' => 'default',
+  'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '467',
+  'location' => 'theme/theme.inc:116',
+  'textgroup' => 'default',
+  'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '468',
+  'location' => 'theme/content-edit.js:0',
+  'textgroup' => 'default',
+  'source' => 'Remove this item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '469',
+  'location' => 'content_admin.inc:290',
+  'textgroup' => 'default',
+  'source' => 'Add field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '470',
+  'location' => 'field.php:180;190,  number.module:119,  text.module:107',
+  'textgroup' => 'default',
+  'source' => 'Illegal value for %name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '471',
+  'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
+  'textgroup' => 'default',
+  'source' => '%label is longer than %max characters.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '472',
+  'location' => 'field.php:273 text.module:167',
+  'textgroup' => 'default',
+  'source' => '"Rows" must be a positive integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '473',
+  'location' => 'modules/number/number.module:133 modules/text/text.module:92',
+  'textgroup' => 'default',
+  'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database and it must match the field storage type, %type. The label is optional and the key will be used as the label if no label is specified.<br />Allowed HTML tags: @tags',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '474',
+  'location' => 'content.module:144',
+  'textgroup' => 'default',
+  'source' => 'add field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '475',
+  'location' => 'includes/content.admin.inc:112;291',
+  'textgroup' => 'default',
+  'source' => 'There are no fields configured for this content type. You can !link.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '476',
+  'location' => 'includes/content.admin.inc:113;292',
+  'textgroup' => 'default',
+  'source' => 'Add a new field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '477',
+  'location' => 'includes/content.admin.inc:137',
+  'textgroup' => 'default',
+  'source' => 'To change the order of a field, grab a drag-and-drop handle under the Label column and drag the field to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the Save button at the bottom of the page.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '478',
+  'location' => 'includes/content.admin.inc:477',
+  'textgroup' => 'default',
+  'source' => 'No field modules are enabled. You need to <a href="!modules_url">enable one</a>, such as text.module, before you can add new fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '479',
+  'location' => 'content_admin.inc:277',
+  'textgroup' => 'default',
+  'source' => 'Add existing field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '480',
+  'location' => 'content_admin.inc:311',
+  'textgroup' => 'default',
+  'source' => 'Create new field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '481',
+  'location' => 'includes/content.admin.inc:606',
+  'textgroup' => 'default',
+  'source' => 'The machine-readable name of the field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '482',
+  'location' => 'includes/content.admin.inc:610',
+  'textgroup' => 'default',
+  'source' => 'This name cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '483',
+  'location' => 'includes/content.admin.inc:618',
+  'textgroup' => 'default',
+  'source' => "This name cannot be changed later! The name will be prefixed with 'field_' and can include lowercase unaccented letters, numbers, and underscores. The length of the name, including the prefix, is limited to no more than 32 letters.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '484',
+  'location' => 'includes/content.admin.inc:636',
+  'textgroup' => 'default',
+  'source' => 'The type of data you would like to store in the database with this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '485',
+  'location' => 'includes/content.admin.inc:692',
+  'textgroup' => 'default',
+  'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '486',
+  'location' => 'includes/content.admin.inc:695',
+  'textgroup' => 'default',
+  'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '487',
+  'location' => 'includes/content.admin.inc:706',
+  'textgroup' => 'default',
+  'source' => 'The field name %field_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '488',
+  'location' => 'includes/content.admin.inc:709',
+  'textgroup' => 'default',
+  'source' => "The name 'field_instance' is a reserved name.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '489',
+  'location' => 'content_admin.inc:432',
+  'textgroup' => 'default',
+  'source' => 'Created field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '490',
+  'location' => 'includes/content.admin.inc:754',
+  'textgroup' => 'default',
+  'source' => 'Update field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '491',
+  'location' => 'includes/content.admin.inc:758',
+  'textgroup' => 'default',
+  'source' => 'There was a problem updating field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '492',
+  'location' => 'includes/content.admin.inc:955',
+  'textgroup' => 'default',
+  'source' => "Advanced usage only: PHP code that returns a default value. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>Using !link_devel's 'devel load' tab on a %type content page might help you figure out the expected format.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '493',
+  'location' => 'includes/content.admin.inc:986',
+  'textgroup' => 'default',
+  'source' => "Select a specific number of values for this field, or 'Unlimited' to provide an 'Add more' button so the users can add as many values as they like.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '494',
+  'location' => 'includes/content.admin.inc:1131',
+  'textgroup' => 'default',
+  'source' => 'The default value PHP code created @value which is invalid.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '495',
+  'location' => 'includes/content.token.inc:62',
+  'textgroup' => 'default',
+  'source' => 'Formatted HTML link to the node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '496',
+  'location' => 'number.module:113',
+  'textgroup' => 'default',
+  'source' => 'The value of %name may be no smaller than %min.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '497',
+  'location' => 'number.module:116',
+  'textgroup' => 'default',
+  'source' => 'The value of %name may be no larger than %max.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '498',
+  'location' => 'modules/number/number.module:476',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '499',
+  'location' => 'modules/number/number.module:494',
+  'textgroup' => 'default',
+  'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '500',
+  'location' => 'modules/number/number.module:513',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '501',
+  'location' => 'modules/optionwidgets/optionwidgets.module:10',
+  'textgroup' => 'default',
+  'source' => 'Create a list of options as a list in <strong>Allowed values</strong> or as an array in PHP code. These values will be the same for %field in all content types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '502',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Drag to re-order',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '503',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Changes made in this table will not be saved until the form is submitted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '504',
+  'location' => 'field:profile_color:title',
+  'textgroup' => 'profile',
+  'source' => 'Favorite color',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '505',
+  'location' => 'field:profile_color:explanation',
+  'textgroup' => 'profile',
+  'source' => 'List your favorite color',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '506',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Personal information',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '507',
+  'location' => 'field:profile_biography:title',
+  'textgroup' => 'profile',
+  'source' => 'Biography',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '508',
+  'location' => 'field:profile_biography:explanation',
+  'textgroup' => 'profile',
+  'source' => 'Tell people a little bit about yourself',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '509',
+  'location' => 'field:profile_sell_Address:title',
+  'textgroup' => 'profile',
+  'source' => 'Sell your email address?',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '510',
+  'location' => 'field:profile_sell_Address:explanation',
+  'textgroup' => 'profile',
+  'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '511',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Communication preferences',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '512',
+  'location' => 'field:profile_sold_to:title',
+  'textgroup' => 'profile',
+  'source' => 'Sales Category',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '513',
+  'location' => 'field:profile_sold_to:explanation',
+  'textgroup' => 'profile',
+  'source' => "Select the sales categories to which this user's address was sold.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '514',
+  'location' => 'field:profile_sold_to:options',
+  'textgroup' => 'profile',
+  'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '515',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Administrative data',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '516',
+  'location' => 'field:profile_bands:title',
+  'textgroup' => 'profile',
+  'source' => 'Favorite bands',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '517',
+  'location' => 'field:profile_bands:explanation',
+  'textgroup' => 'profile',
+  'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '518',
+  'location' => 'field:profile_birthdate:title',
+  'textgroup' => 'profile',
+  'source' => 'Birthdate',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '519',
+  'location' => 'field:profile_birthdate:explanation',
+  'textgroup' => 'profile',
+  'source' => "Enter your birth date and we'll send you a coupon.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '520',
+  'location' => 'field:profile_really_really_love_migrations:title',
+  'textgroup' => 'profile',
+  'source' => 'I really, really, really love migrations',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '521',
+  'location' => 'field:profile_really_really_love_migrations:explanation',
+  'textgroup' => 'profile',
+  'source' => 'If you check this box, you love migrations.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '522',
+  'location' => 'field:profile_blog:title',
+  'textgroup' => 'profile',
+  'source' => 'Blog',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '523',
+  'location' => 'field:profile_blog:explanation',
+  'textgroup' => 'profile',
+  'source' => 'Paste the full URL, including http://, of your personal blog.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '524',
+  'location' => 'block:1:title',
+  'textgroup' => 'blocks',
+  'source' => 'Static Block',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '525',
+  'location' => 'block:1:body',
+  'textgroup' => 'blocks',
+  'source' => '<h3>My first custom block body</h3>',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '526',
+  'location' => 'block:2:title',
+  'textgroup' => 'blocks',
+  'source' => 'Another Static Block',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '527',
+  'location' => 'block:2:body',
+  'textgroup' => 'blocks',
+  'source' => '<h3>My second custom block body</h3>',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '528',
+  'location' => 'vocabulary:4:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Tags',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '529',
+  'location' => 'vocabulary:1:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 1 (i=0)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '530',
+  'location' => 'vocabulary:2:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 2 (i=1)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '531',
+  'location' => 'vocabulary:3:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 3 (i=2)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '532',
+  'location' => 'vocabulary:5:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary name much longer than thirty two characters',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '533',
+  'location' => 'type:article:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Article',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '534',
+  'location' => 'type:article:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '535',
+  'location' => 'type:article:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '536',
+  'location' => 'type:article:description',
+  'textgroup' => 'nodetype',
+  'source' => 'An <em>article</em>, content type.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '537',
+  'location' => 'type:company:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Company',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '538',
+  'location' => 'type:company:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '539',
+  'location' => 'type:company:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '540',
+  'location' => 'type:company:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Company node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '541',
+  'location' => 'type:employee:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Employee',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '542',
+  'location' => 'type:employee:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '543',
+  'location' => 'type:employee:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Bio',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '544',
+  'location' => 'type:employee:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Employee node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '545',
+  'location' => 'type:sponsor:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Sponsor',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '546',
+  'location' => 'type:sponsor:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '547',
+  'location' => 'type:sponsor:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '548',
+  'location' => 'type:sponsor:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Sponsor node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '549',
+  'location' => 'type:story:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Story',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '550',
+  'location' => 'type:story:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '551',
+  'location' => 'type:story:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '552',
+  'location' => 'type:story:description',
+  'textgroup' => 'nodetype',
+  'source' => "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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '553',
+  'location' => 'type:test_event:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test event',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '554',
+  'location' => 'type:test_event:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Event Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '555',
+  'location' => 'type:test_event:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '556',
+  'location' => 'type:test_event:description',
+  'textgroup' => 'nodetype',
+  'source' => 'test event description here',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '558',
+  'location' => 'type:test_page:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test page',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '559',
+  'location' => 'type:test_page:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '560',
+  'location' => 'type:test_page:body',
+  'textgroup' => 'nodetype',
+  'source' => 'This is the body field label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '561',
+  'location' => 'type:test_page:description',
+  'textgroup' => 'nodetype',
+  'source' => "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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '562',
+  'location' => 'type:test_planet:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test planet',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '563',
+  'location' => 'type:test_planet:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '564',
+  'location' => 'type:test_planet:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '565',
+  'location' => 'type:test_planet:description',
+  'textgroup' => 'nodetype',
+  'source' => "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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '566',
+  'location' => 'type:test_story:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test story',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '567',
+  'location' => 'type:test_story:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '568',
+  'location' => 'type:test_story:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '569',
+  'location' => 'type:test_story:description',
+  'textgroup' => 'nodetype',
+  'source' => "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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '570',
+  'location' => 'field:story-field_test_exclude_unset:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '571',
+  'location' => 'field:story-field_test_exclude_unset:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field without exclude.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '572',
+  'location' => 'field:story-field_test_two:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '573',
+  'location' => 'field:story-field_test_two:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '574',
+  'location' => 'field:story-field_test:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '575',
+  'location' => 'field:story-field_test:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '576',
+  'location' => 'field:story-field_test_three:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '577',
+  'location' => 'field:story-field_test_three:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example decimal field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '578',
+  'location' => 'field:story-field_test_four:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Float Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '579',
+  'location' => 'field:story-field_test_four:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example float field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '580',
+  'location' => 'field:story-field_test_identical1:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '581',
+  'location' => 'field:story-field_test_identical1:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '582',
+  'location' => 'field:story-field_test_identical2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '583',
+  'location' => 'field:story-field_test_identical2:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '584',
+  'location' => 'field:story-field_test_email:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Email Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '585',
+  'location' => 'field:story-field_test_email:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example email field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '586',
+  'location' => 'field:story-field_test_link:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Link Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '587',
+  'location' => 'field:story-field_test_link:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example link field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '588',
+  'location' => 'field:story-field_test_filefield:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'File Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '589',
+  'location' => 'field:story-field_test_filefield:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example image field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '590',
+  'location' => 'field:story-field_test_imagefield:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Image Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '591',
+  'location' => 'field:story-field_test_imagefield:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example image field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '592',
+  'location' => 'field:story-field_test_date:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Date Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '593',
+  'location' => 'field:story-field_test_date:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example date field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '594',
+  'location' => 'field:story-field_test_datestamp:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Date Stamp Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '595',
+  'location' => 'field:story-field_test_datestamp:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example date stamp field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '596',
+  'location' => 'field:story-field_test_datetime:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Datetime Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '597',
+  'location' => 'field:story-field_test_datetime:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example datetime field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '598',
+  'location' => 'field:story-field_test_phone:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Phone Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '599',
+  'location' => 'field:story-field_test_phone:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example phone field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '600',
+  'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Radio Buttons Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '601',
+  'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example decimal field using radio buttons.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '602',
+  'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
+  'textgroup' => 'cck',
+  'source' => '1.2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '603',
+  'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
+  'textgroup' => 'cck',
+  'source' => '2.1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '604',
+  'location' => 'field:story-field_test_float_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Float Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '605',
+  'location' => 'field:story-field_test_float_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example float field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '606',
+  'location' => 'field:field_test_float_single_checkbox:option_3.142',
+  'textgroup' => 'cck',
+  'source' => '3.142',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '607',
+  'location' => 'field:field_test_float_single_checkbox:option_1.234',
+  'textgroup' => 'cck',
+  'source' => '1.234',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '608',
+  'location' => 'field:story-field_test_integer_selectlist:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Select List Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '609',
+  'location' => 'field:story-field_test_integer_selectlist:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field using a select list.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '610',
+  'location' => 'field:field_test_integer_selectlist:option_1234',
+  'textgroup' => 'cck',
+  'source' => '1234',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '611',
+  'location' => 'field:field_test_integer_selectlist:option_2341',
+  'textgroup' => 'cck',
+  'source' => '2341',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '612',
+  'location' => 'field:field_test_integer_selectlist:option_3412',
+  'textgroup' => 'cck',
+  'source' => '3412',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '613',
+  'location' => 'field:field_test_integer_selectlist:option_4123',
+  'textgroup' => 'cck',
+  'source' => '4123',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '614',
+  'location' => 'field:story-field_test_text_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '615',
+  'location' => 'field:story-field_test_text_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '616',
+  'location' => 'field:field_test_text_single_checkbox:option_0',
+  'textgroup' => 'cck',
+  'source' => 'Hello',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '617',
+  'location' => 'field:field_test_text_single_checkbox:option_1',
+  'textgroup' => 'cck',
+  'source' => 'Goodbye',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '618',
+  'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '619',
+  'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'Checkbox that uses keys only and no label.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '620',
+  'location' => 'field:field_test_text_single_checkbox2:option_Off',
+  'textgroup' => 'cck',
+  'source' => 'Off',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '621',
+  'location' => 'field:field_test_text_single_checkbox2:option_Hello',
+  'textgroup' => 'cck',
+  'source' => 'Hello',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '622',
+  'location' => 'field:test_page-field_test:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '623',
+  'location' => 'field:test_page-field_test:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '624',
+  'location' => 'field:test_planet-field_multivalue:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '625',
+  'location' => 'field:test_planet-field_multivalue:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example multi-valued decimal field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '627',
+  'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '628',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Select all rows in this table',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '629',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Deselect all rows in this table',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '630',
+  'location' => 'sites/all/modules/filefield/filefield.js',
+  'textgroup' => 'default',
+  'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '631',
+  'location' => 'misc/teaser.js',
+  'textgroup' => 'default',
+  'source' => 'Split summary at cursor',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '632',
+  'location' => 'misc/teaser.js',
+  'textgroup' => 'default',
+  'source' => 'Join summary',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '633',
+  'location' => 'item:140:title',
+  'textgroup' => 'menu',
+  'source' => 'Drupal.org',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '634',
+  'location' => 'item:139:title',
+  'textgroup' => 'menu',
+  'source' => 'Test 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '635',
+  'location' => 'item:139:description',
+  'textgroup' => 'menu',
+  'source' => 'Test menu link 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '636',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '637',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '638',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The name of this website.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '639',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'E-mail address',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '640',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "The <em>From</em> address in automated e-mails sent during registration and new password requests, and other notifications. (Use an address ending in your site's domain to help prevent this e-mail being flagged as spam.)",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '641',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Slogan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '642',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '643',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Mission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '644',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '645',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Footer message',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '646',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '647',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Anonymous user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '648',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Anonymous',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '649',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The name used to indicate anonymous users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '650',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Default front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '651',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '652',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Save configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '653',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Reset to defaults',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '654',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'This is a multilingual variable.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '655',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Left sidebar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '656',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Right sidebar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '657',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Header',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '658',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Footer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '659',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'RSS feed',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '660',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => '',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '661',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '662',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Compact mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '663',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Content management',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '664',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Manage your site's content.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '665',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Reports',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '666',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'View reports from system logs and other status information.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '667',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site building',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '668',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how your site looks and feels.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '669',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '670',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Adjust basic site configuration options.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '671',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '672',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Manage the actions defined for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '673',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administration theme',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '674',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Settings for how your administrative pages should look.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '675',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Clean URLs',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '676',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable clean URLs for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '677',
+  'location' => 'date.module:39',
+  'textgroup' => 'default',
+  'source' => 'Date and time',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '678',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '679',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Error reporting',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '680',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '681',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '682',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '683',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File uploads',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '684',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how files may be attached to content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '685',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Image toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '686',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '687',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Input formats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '688',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '689',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Logging and alerts',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '690',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '691',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Performance',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '692',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '693',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site maintenance',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '694',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Take the site off-line for maintenance or bring it back online.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '695',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Events',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '696',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Set up how your site handles events.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '697',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'CCK Email Contact Form Settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '698',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administer flood control settings for email contact forms',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '699',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '700',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure ImageAPI.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '701',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '702',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure languages for content and the user interface.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '703',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Variables',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '704',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Edit and delete site variables.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '705',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User management',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '706',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Manage your site's users, groups and access to site features.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '707',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Contact',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '708',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Log out',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '709',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '710',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '711',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '712',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Compose tips',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '713',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Create content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '714',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Delete comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '715',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Edit comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '716',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File download',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '717',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '718',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User timezone',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '719',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'My account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '720',
+  'location' => 'content_admin.inc:199',
+  'textgroup' => 'default',
+  'source' => 'Delete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '721',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Feed aggregator',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '722',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '723',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Save string',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '724',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Node title autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '725',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'View user profile.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '726',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Who's new",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '727',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Powered by Drupal, an open source content management system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '728',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Home',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '729',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '730',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'French',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '731',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The configuration options have been saved.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '732',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Long',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '733',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Medium',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '734',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Short',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '735',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The e-mail address %mail is not valid.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '736',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Default 403 (access denied) page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '737',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '738',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Default 404 (not found) page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '739',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '740',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Write errors to the log',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '741',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Write errors to the log and to the screen',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '742',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Specify where Drupal, PHP and SQL errors are logged. While it is recommended that a site running in a production environment write errors to the log only, in a development or testing environment it may be helpful to write errors both to the log and to the screen.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '743',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Access rules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '744',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '745',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '746',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Determine access to features by selecting permissions for roles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '747',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Profiles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '748',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Create customizable fields for your users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '749',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Roles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '750',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List, edit, or add user roles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '751',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'User settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '752',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '753',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '754',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List, add, and edit users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '755',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User registration settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '756',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Public registrations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '757',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Only site administrators can create new user accounts.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '758',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Visitors can create accounts and no administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '759',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Visitors can create accounts but administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '760',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Require e-mail verification when a visitor creates an account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '761',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'If this box is checked, new users will be required to validate their e-mail address prior to logging into the site, and will be assigned a system-generated password. With it unchecked, users will be logged in immediately upon registering, and may select their own passwords during registration.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '762',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User registration guidelines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '763',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '764',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User e-mail settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '765',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Drupal sends emails whenever new users register on your site, and optionally, may also notify users after other account actions. Using a simple set of content templates, notification e-mails can be customized to fit the specific needs of your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '766',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Available variables are:',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '767',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, new user created by administrator',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '768',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '769',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Subject',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '770',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Body',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '771',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, no approval required',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '772',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '773',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, awaiting administrator approval',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '774',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '775',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Password recovery email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '776',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize e-mail messages sent to users who request a new password.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '777',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account activation email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '778',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enable and customize e-mail messages sent to users upon account activation (when an administrator activates an account of a user who has already registered, on a site where administrative approval is required).',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '779',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is activated.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '780',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account blocked email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '781',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '782',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is blocked.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '783',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account deleted email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '784',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '785',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is deleted.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '786',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Signatures',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '787',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Signature support',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '788',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Disabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '789',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '790',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Pictures',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '791',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture support',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '792',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture image path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '793',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '794',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Default picture',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '795',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '796',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture maximum dimensions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '797',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Maximum dimensions for pictures, in pixels.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '798',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture maximum file size',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '799',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Maximum file size for pictures, in kB.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '800',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture guidelines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '801',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => "This text is displayed at the picture upload form in addition to the default guidelines. It's useful for helping or instructing your users.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '802',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'The normal cache mode is suitable for most sites and does not cause any side effects. The aggressive cache mode causes Drupal to skip the loading (boot) and unloading (exit) of enabled modules when serving a cached page. This results in an additional performance boost but can cause unwanted side effects.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '803',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '804',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Page cache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '805',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Enabling the page cache will offer a significant performance boost. Drupal can store and send compressed cached pages requested by <em>anonymous</em> users. By caching a web page, Drupal does not have to construct the page each time it is viewed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '806',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Caching mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '807',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Normal (recommended for production sites, no side effects)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '808',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Aggressive (experts only, possible side effects)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '809',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '0 sec',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '810',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 min',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '811',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '@count min',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '812',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 hour',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '813',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '@count hours',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '814',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 day',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '815',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Minimum cache lifetime',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '816',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'On high-traffic sites, it may be necessary to enforce a minimum cache lifetime. The minimum cache lifetime is the minimum amount of time that will elapse before the cache is emptied and recreated, and is applied to both page and block caches. A larger minimum cache lifetime offers better performance, but users will not see new content for a longer period of time.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '817',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Page compression',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '818',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'By default, Drupal compresses the pages it caches in order to save bandwidth and improve download times. This option should be disabled when using a webserver that performs compression.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '819',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Block cache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '820',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Enabling the block cache can offer a performance increase for all users by preventing blocks from being reconstructed on each page load. If the page cache is also enabled, performance increases from enabling the block cache will mainly benefit authenticated users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '821',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Enabled (recommended)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '822',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '823',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Bandwidth optimizations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '824',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '<p>Drupal can automatically optimize external resources like CSS and JavaScript, which can reduce both the size and number of requests made to your website. CSS files can be aggregated and compressed into a single file, while JavaScript files are aggregated (but not compressed). These optional optimizations may reduce server load, bandwidth requirements, and page loading times.</p><p>These options are disabled if you have not set up your files directory, or if your download method is set to private.</p>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '825',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Optimize CSS files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '826',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '827',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Optimize JavaScript files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '828',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '829',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Clear cached data',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '830',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Caching data improves performance, but may cause problems while troubleshooting new modules, themes, or translations, if outdated information has been cached. To refresh all cached data on your site, click the button below. <em>Warning: high-traffic sites will experience performance slowdowns while cached data is rebuilt.</em>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '831',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Site status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '832',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Online',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '833',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Off-line',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '834',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'When set to "Online", all visitors will be able to browse your site normally. When set to "Off-line", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site off-line message configured below. Authorized users can log in during "Off-line" mode directly via the <a href="@user-login">user login</a> page.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '835',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Site off-line message',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '836',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '837',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Message to show visitors when the site is in off-line mode.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '838',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Left to right',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '839',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'English name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '840',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Native name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '841',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Direction',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '842',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Language negotiation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '843',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'List',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '844',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '845',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Configure extended options for multilingual content and translations.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '846',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Multilingual variables.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '847',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Add language',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '848',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Multilingual system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '849',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'String translation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '850',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => "This page provides an overview of your site's enabled languages. If multiple languages are available and enabled, the text on your site interface may be translated, registered users may select their preferred language on the <em>My account</em> page, and site authors may indicate a specific language when creating posts. The site's default language is used for anonymous visitors and for users who have not selected a preferred language.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '851',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'For each language available on the site, use the <em>edit</em> link to configure language details, including name, an optional language-specific path or domain, and whether the language is natively presented either left-to-right or right-to-left. These languages also appear in the <em>Language</em> selection when creating a post of a content type with multilingual support.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '852',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Use the <a href="@add-language">add language page</a> to enable additional languages (and automatically import files from a translation package, if available), the <a href="@search">translate interface page</a> to locate strings for manual translation, or the <a href="@import">import page</a> to add translations from individual <em>.po</em> files. A number of contributed translation packages containing <em>.po</em> files are available on the <a href="@translations">Drupal.org translations page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '853',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => '<strong>Warning</strong>: Changing the default language may have unwanted effects on string translations. Read more about <a href="@i18nstrings-help">String translation</a>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '854',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'anonymous user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '855',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'authenticated user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '856',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'All roles may use default format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '857',
+  'location' => 'content_admin.inc:250',
+  'textgroup' => 'default',
+  'source' => 'configure',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '858',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'No roles may use this format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '859',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Set default format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '860',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Delete input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '861',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Add input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '862',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => '<em>Input formats</em> define a way of processing user-supplied text in Drupal. Each input format uses filters to manipulate text, and most input formats apply several different filters to text, in a specific order. Each filter is designed to accomplish a specific purpose, and generally either removes elements from or adds elements to text before it is displayed. Users can choose between the available input formats when submitting content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '863',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Use the list below to configure which input formats are available to which roles, as well as choose a default input format (used for imported content, for example). The default format is always available to users. All input formats are available to users in a role with the "administer filters" permission.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '864',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'After updating your Input formats do not forget to review the list of formats allowed for string translations on the <a href="@configure-strings">configure translatable strings</a> page.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '865',
+  'location' => '/?q=fr/admin/settings/imageapi',
+  'textgroup' => 'default',
+  'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '866',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'GD2 image manipulation toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '867',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'The GD toolkit is installed and working properly.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '868',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'JPEG quality',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '869',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '870',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => '%',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '871',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'General settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '872',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Maximum resolution for uploaded images',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '873',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction. If an <a href="!image-toolkit-link">image toolkit</a> is installed, files exceeding this value will be scaled down to fit.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '874',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'WIDTHxHEIGHT',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '875',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'List files by default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '876',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'No',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '877',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Yes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '878',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Display attached files when viewing a post.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '879',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default permitted file extensions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '880',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '881',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default maximum file size per upload',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '882',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'The default maximum file size a user can upload. If an image is uploaded and a maximum resolution is set, the size will be checked after the file has been resized.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '883',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'MB',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '884',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default total file size per user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '885',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'The default maximum size of all files a user can have on the site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '886',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'KB',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '887',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => '@size @suffix',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '888',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '889',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Users with the <a href="@permissions">upload files permission</a> can upload attachments. Users with the <a href="@permissions">view uploaded files permission</a> can view uploaded attachments. You can choose which post types can take attachments on the <a href="@types">content types settings</a> page.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '890',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'File system path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '891',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'A file system path where the files will be stored. This directory must exist and be writable by Drupal. If the download method is set to public, this directory must be relative to the Drupal installation directory and be accessible over the web. If the download method is set to private, this directory should not be accessible over the web. Changing this location will modify all download paths and may cause unexpected problems on an existing site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '892',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Temporary directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '893',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'A file system path where uploaded files will be stored during previews.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '894',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Download method',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '895',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Public - files are available using HTTP directly.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '896',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Private - files are transferred by Drupal.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '897',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Choose the <em>Public download</em> method unless you wish to enforce fine-grained access controls over file downloads. Changing the download method will modify all download paths and may cause unexpected problems on an existing site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '898',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'The directory %directory does not exist.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '899',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Event overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '900',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Change how event summary information is displayed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '901',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Timezone handling',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '902',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Change how timezone information is saved and displayed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '903',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Event time zone input',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '904',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Use the sitewide time zone',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '905',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Use the time zone of the user editing or creating the event',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '906',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Allow users to set event time zones',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '907',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'date/time settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '908',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => "Events are saved with a time zone value. This setting allows you to determine how the time zone is determined when creating or editing an event. You must have 'Configurable time zones' enabled in the !url before you can enable user's time zones for this feature.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '909',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Event time zone display',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '910',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => "Use the event's time zone",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '911',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => "Events are saved with a time zone value. This setting allows you to determine if the event's time zone, the sitewide time zone, or the user's personal time zone setting is used to display the time for an event. You must have 'Configurable time zones' enabled in the !url before you can enable user's time zones for this feature.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '912',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Time notation preference',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '913',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => '24h',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '914',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => '12h',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '915',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'The time notation system used for entering event times.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '916',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Upcoming event block limit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '917',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '918',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Default overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '919',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Day',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '920',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Week',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '921',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Month',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '922',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Table',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '923',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'The default event view to display when no format is specifically requested. This is also the view that will be displayed from the block calendar links.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '924',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Table view default period',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '925',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'here',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '926',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'The default number of days to display in the table view. You can specify a different number of days in the url. More info on the event url format !link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '927',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy filter controls',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '928',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Show taxonomy filter control on calendar views',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '929',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '930',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Never show taxonomy filter control',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '931',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Content type filter controls',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '932',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Show content type filter control on calendar views',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '933',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Only show content type filter control when content type filter view is requested',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '934',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Never show content type filter control',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '935',
+  'location' => '/?q=fr/admin/settings/email',
+  'textgroup' => 'default',
+  'source' => 'Hourly threshold for a CCK Email contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '936',
+  'location' => '/?q=fr/admin/settings/email',
+  'textgroup' => 'default',
+  'source' => 'The maximum number of contact form submissions a user can perform per hour.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '937',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'System default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '938',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'Choose which theme the administration pages should display in. If you choose "System default" the administration pages will use the same theme as the rest of the site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '939',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'Use administration theme for content editing',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '940',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'Use the administration theme when editing existing posts or creating new ones.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '941',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Publish comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '942',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '943',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish comment containing keyword(s)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '944',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Publish post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '945',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '946',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make post sticky',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '947',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make post unsticky',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '948',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Promote post to front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '949',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Remove post from front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '950',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Change the author of a post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '951',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Save post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '952',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish post containing keyword(s)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '953',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Display a message to the user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '954',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Send e-mail',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '955',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Redirect to URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '956',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Block current user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '957',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Ban IP address of current user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '958',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Flush ALL presets for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '959',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Generate ALL presets for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '960',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '961',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Choose an advanced action',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '962',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Action type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '963',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => '« first',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '964',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => '‹ previous',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '965',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'next ›',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '966',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'last »',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '967',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Actions available to Drupal:',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '968',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort by @s',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '969',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort icon',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '970',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort descending',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '971',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make a new advanced action available',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '972',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Create',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '973',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Configure an advanced action',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '974',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Remove orphans',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '975',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Manage actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '976',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '977',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions can do more than simple actions; for example, send an e-mail to a specified address, or check for certain words within a piece of content. These actions need to be created and configured first before they may be used. To create an advanced action, select the action from the drop-down below and click the <em>Create</em> button.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '978',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Create new account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '979',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '980',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@module module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '981',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access news feeds',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '982',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer news feeds',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '983',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer blocks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '984',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'use PHP for block visibility',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '985',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access printer-friendly version',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '986',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'add content to books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '987',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer book outlines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '988',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create new books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '989',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '990',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '991',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'post comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '992',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'post comments without approval',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '993',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access site-wide contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '994',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer site-wide contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '995',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer filters',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '996',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '997',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'translate interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '998',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer menu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '999',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1000',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer content types',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1001',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer nodes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1002',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1003',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1004',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1005',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1006',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1007',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1008',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1009',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1010',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1011',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1012',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1013',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1014',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1015',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1016',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1017',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1018',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1019',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1020',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1021',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1022',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1023',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1024',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1025',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1026',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1027',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1028',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1029',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1030',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1031',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1032',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1033',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1034',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1035',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1036',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1037',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1038',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1039',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1040',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1041',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1042',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1043',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1044',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1045',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1046',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1047',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1048',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'revert revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1049',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1050',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer url aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1051',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create url aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1052',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access administration pages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1053',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access site reports',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1054',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1055',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1056',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer site configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1057',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'select different theme',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1058',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1059',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'translate content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1060',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'upload files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1061',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view uploaded files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1062',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access user profiles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1063',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1064',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1065',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'change own username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1066',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view date repeats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1067',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer imageapi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1068',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer imagecache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1069',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'flush imagecache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1070',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view imagecache big_blue_cheese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1071',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view imagecache slackjaw_boys',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1072',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer all languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1073',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer translations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1074',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'permission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1075',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1076',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'active',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1077',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'blocked',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1078',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Show only users where',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1079',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Filter',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1080',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'is',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1081',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1082',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1083',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Member for',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1084',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Last access',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1085',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Update options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1086',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Unblock the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1087',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Block the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1088',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Delete the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1089',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Add a role to the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1090',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Remove a role from the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1091',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Update',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1092',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count years',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1093',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count weeks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1094',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@time ago',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1095',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count sec',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1096',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'sort ascending',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1097',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Add user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1098',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Drupal allows users to register, login, log out, maintain user profiles, etc. Users of the site may not use their own names to post content until they have signed up for a user account.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1099',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'Add role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1100',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'edit permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1101',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'locked',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1102',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'edit role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1103',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'Edit role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1104',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => "<p>Roles allow you to fine tune the security and administration of Drupal. A role defines a group of users that have certain privileges as defined in <a href=\"@permissions\">user permissions</a>. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the <em>role names</em> of the various roles. To delete a role choose \"edit\".</p><p>By default, Drupal comes with two user roles:</p>\n      <ul>\n      <li>Anonymous user: this role is used for users that don't have a user account or that are not authenticated.</li>\n      <li>Authenticated user: this role is automatically granted to all logged in users.</li>\n      </ul>",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1105',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Add new field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1106',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'single-line textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1107',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'multi-line textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1108',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'checkbox',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1109',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'list selection',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1110',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'freeform list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1111',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1112',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'date',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1113',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'No fields in this category. If this category remains empty when saved, it will be removed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1114',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1115',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Category',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1116',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Delete field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1117',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Edit field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1118',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Profile category autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1119',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => "This page displays a list of the existing custom profile fields to be displayed on a user's <em>My Account</em> page. To provide structure, similar or related fields may be placed inside a category. To add a new category (or edit an existing one), edit a profile field and provide a new category name. To change the category of a field or the order of fields within a category, grab a drag-and-drop handle under the Title column and drag the field to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1120',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  'source' => 'Save permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1121',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  'source' => 'Permission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1122',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  'source' => 'Permissions let you control what users can do on your site. Each user role (defined on the <a href="@role">user roles page</a>) has its own set of permissions. For example, you could give users classified as "Administrators" permission to "administer nodes" but deny this power to ordinary, "authenticated" users. You can use permissions to reveal new features to privileged users (those with subscriptions, for example). Permissions also allow trusted users to share the administrative burden of running a busy site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1123',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Access type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1124',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Rule type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1125',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Mask',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1126',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1127',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'e-mail',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1128',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'host',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1129',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'There are currently no access rules.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1130',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Delete rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1131',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Edit rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1132',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Add rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1133',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Check rules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1134',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Set up username and e-mail address access rules for new <em>and</em> existing accounts (currently logged in accounts will not be logged out). If a username or e-mail address for an account matches any deny rule, but not an allow rule, then the account will not be allowed to be created or to log in. A host rule is effective for every page view, not just registrations.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1135',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'edit %title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1136',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Field settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1137',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1138',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The title of the new field. The title will be shown to the user. An example title is "Favorite color".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1139',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Form name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1140',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => "The name of the field. The form name is not shown to the user but used internally in the HTML code and URLs.\nUnless you know what you are doing, it is highly recommended that you prefix the form name with <code>profile_</code> to avoid name clashes with other fields. Spaces or any other special characters except dash (-) and underscore (_) are not allowed. An example name is \"profile_favorite_color\" or perhaps just \"profile_color\".",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1141',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Explanation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1142',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'An optional explanation to go with the new field. The explanation will be shown to the user.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1143',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Selection options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1144',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'A list of all options. Put each option on a separate line. Example options are "red", "blue", "green", etc.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1145',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Visibility',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1146',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Hidden profile field, only accessible by administrators, modules and themes.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1147',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Private field, content only available to privileged users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1148',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Public field, content shown on profile page but not used on member list pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1149',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Public field, content shown on profile page and on member list pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1150',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Page title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1151',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'To enable browsing this field by value, enter a title for the resulting page. The word <code>%value</code> will be substituted with the corresponding value. An example page title is "People whose favorite color is %value". This is only applicable for a public field.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1152',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The weights define the order in which the form fields are shown. Lighter fields "float up" towards the top of the category.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1153',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Form will auto-complete while user is typing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1154',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'For security, auto-complete will be disabled if the user does not have access to user profiles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1155',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The user must enter a value.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1156',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Visible in user registration form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1157',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Save field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1158',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1159',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'None.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1160',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Path prefix only.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1161',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Path prefix with language fallback.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1162',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Domain name only.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1163',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => "Select the mechanism used to determine your site's presentation language. <strong>Modifying this setting may break all incoming URLs and should be used with caution in a production environment.</strong>",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1164',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Save settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1165',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => "Language negotiation settings determine the site's presentation language. Available options include:",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1166',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => '<strong>None.</strong> The default language is used for site presentation, though users may (optionally) select a preferred language on the <em>My Account</em> page. (User language preferences will be used for site e-mails, if available.)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1167',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => '<strong>Path prefix only.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the default language is used. <em>Example: "example.com/de/contact" sets presentation language to German based on the use of "de" within the path.</em>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1168',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => "<strong>Path prefix with language fallback.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the display language is determined by the user's language preferences from the <em>My Account</em> page, or by the browser's language settings. If a presentation language cannot be determined, the default language is used.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1169',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => '<strong>Domain name only.</strong> The presentation language is determined by examining the domain used to access the site, and comparing it to the language domain (if any) specified for each language. If a match is not identified, the default language is used. <em>Example: "http://de.example.com/contact" sets presentation language to German based on the use of "http://de.example.com" in the domain.</em>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1170',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'The path prefix or domain name for a language may be set by editing the <a href="@languages">available languages</a>. In the absence of an appropriate match, the site is displayed in the <a href="@languages">default language</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1171',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Translatable input formats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1172',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Only the strings that have the input formats selected will be allowed by the translation system. All the others will be deleted next time the strings are refreshed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1173',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Built-in interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1174',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Blocks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1175',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Menu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1176',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Profile',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1177',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'When translating user defined strings that have an Input format associated, translators will be able to edit the text before it is filtered which may be a security risk for some filters. An obvious example is when using the PHP filter but other filters may also be dangerous.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1178',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => "As a general rule <strong>do not allow any filtered text to be translated unless the translators already have access to that Input format</strong>. However if you are doing all your translations through this site's translation UI or the Localization client, and never importing translations for other textgroups than <i>default</i>, filter access will be checked for translators on every translation page.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1179',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => '<strong>Important:</strong> After disallowing some Input format, use the <a href="@refresh-strings">refresh strings</a> page so forbidden strings are deleted and not allowed anymore for translators.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1180',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content selection',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1181',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content selection mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1182',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Current language and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1183',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Mixed current language (if available) or default language (if not) and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1184',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Only default language and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1185',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Only current language.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1186',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'All content. No language conditions apply.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1187',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Determines which content to show depending on the current page language and the default language of the site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1188',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content translation links',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1189',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Hide content translation links',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1190',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Hide the links to translations in content body and teasers. If you choose this option, switching language will only be available from the language switcher block.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1191',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Switch interface for translating',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1192',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Switch interface language to fit node language when creating or editing a translation. If not checked the interface language will be independent from node language.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1193',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'To set up multilingual options for vocabularies go to <a href="@configure_taxonomy">Taxonomy configuration page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1194',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1195',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Drupal',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1196',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Web server',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1197',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1198',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP register globals',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1199',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP memory limit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1200',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'MySQL database',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1201',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Protected',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1202',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Configuration file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1203',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Files directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1204',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Temporary files directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1205',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not fully protected',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1206',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'See <a href="@url">@url</a> for information about the recommended .htaccess file which should be added to the %directory directory to help protect against arbitrary code execution.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1207',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'For more information, see the online handbook entry for <a href="@cron-handbook">configuring cron jobs</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1208',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Never run',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1209',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Cron has not run.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1210',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Cron maintenance tasks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1211',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'You can <a href="@cron">run cron manually</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1212',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not writable',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1213',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "You may need to set the correct directory at the <a href=\"@admin-file-system\">file system settings page</a> or change the current directory's permissions so that it is writable.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1214',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Database updates',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1215',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Up to date',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1216',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Access to update.php',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1217',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Standard PHP',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1218',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP Mbstring Extension',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1219',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Error',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1220',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Unicode library',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1221',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not enabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1222',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update status module from the <a href="@module">module administration page</a> in order to stay up-to-date on new releases. For more information please read the <a href="@update">Update status handbook page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1223',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Update notifications',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1224',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'set the site timezone name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1225',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'The Date Timezone module requires you to !link.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1226',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Date Timezone requirements',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1227',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'MySQL database for event module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1228',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Your server is capable of displaying file upload progress, but does not have the required libraries. It is recommended to install the <a href="http://pecl.php.net/package/uploadprogress">PECL uploadprogress library</a> (preferred) or to install <a href="http://us2.php.net/apc">APC</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1229',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Upload progress',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1230',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI Toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1231',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'No ImageAPI toolkits available',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1232',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI requires a Toolkit such as ImageAPI GD or ImageAPI ImageMagick to function. Go to !modules and enable one of them.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1233',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageCache Directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1234',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => '%p is not a directory or is not readable by the webserver.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1235',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1236',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1237',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'List and edit site comments and the comment moderation queue.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1238',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "View, edit, and delete your site's content.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1239',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Manage posts by content type, including default status, front page promotion, etc.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1240',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Post settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1241',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1242',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'RSS publishing',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1243',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1244',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Manage tagging, categorization, and classification of your content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1245',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1246',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Manage your site's book outlines.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1247',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Status report',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1248',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Get a status report about your site's operation and any detected problems.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1249',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Configure what block content appears in your site's sidebars and other regions.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1250',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1251',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Create a system contact form and set up categories for the form to use.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1252',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Menus',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1253',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1254',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Modules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1255',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable add-on modules for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1256',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Themes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1257',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Change which theme your site uses or allows users to set.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1258',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'URL aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1259',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Change your site's URL paths by aliasing them.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1260',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Translate interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1261',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Translate the built in interface and optionally other text.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1262',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Hide descriptions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1263',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Compress layout by hiding descriptions.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1264',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'By task',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1265',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'By module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1266',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Welcome to the administration section. Here you may control how your site functions.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1267',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Configure permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1268',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1269',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a timestamp, deprecated format to suppport legacy data.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1270',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1271',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'File',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1272',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store an arbitrary file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1273',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1274',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a title, href, and attributes in the database to assemble a link.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1275',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - France',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1276',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Belgium',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1277',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Italy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1278',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Greece',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1279',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Switzerland',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1280',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - US & Canada',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1281',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Costa Rica',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1282',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Panama',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1283',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Great Britain - United Kingdom',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1284',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Russia',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1285',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Ukraine - in Kiev',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1286',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Spain',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1287',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Australia',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1288',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Czech Republic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1289',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Hungary',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1290',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Poland - mobiles only',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1291',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Netherland',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1292',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Sweden',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1293',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - South Africa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1294',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Israel',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1295',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - New Zealand',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1296',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Brazil',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1297',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Chile',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1298',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - China',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1299',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Hong-Kong',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1300',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Macao',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1301',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - The Philippines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1302',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Singapore',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1303',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Jordan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1304',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Egypt',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1305',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Pakistan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1306',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - International Phone Numbers per E.123',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1307',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Select List',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1308',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Select List with Repeat options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1309',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Text Field with custom input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1310',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Text Field with Repeat options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1311',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'As Time Ago',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1312',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Default email link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1313',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Email contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1314',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Email plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1315',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'File Upload',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1316',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'A plain file upload widget.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1317',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Generic files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1318',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays all kinds of files with an icon and a linked file description.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1319',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1320',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays the file system path to the file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1321',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1322',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays a full URL to the file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1323',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1324',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image linked to node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1325',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image linked to image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1326',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset file path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1327',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1328',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1329',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'An edit widget for image files, including a preview of the image.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1330',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays image files in their original size.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1331',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image linked to node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1332',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image linked to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1333',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Title, as link (default)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1334',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Title, as plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1335',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1336',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1337',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as absolute URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1338',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Short, as link with title "Link"',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1339',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Label, as link with label as title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1340',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Separate title and URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1341',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1342',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Revision information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1343',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Authoring information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1344',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Publishing options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1345',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Comment settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1346',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Comment module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1347',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Translation settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1348',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Translation module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1349',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1350',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1351',
+  'location' => 'content.module:1897;1900,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Print',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1352',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Account settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1353',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1354',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Controls the boxes that are displayed around the main content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1355',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to structure site pages in a hierarchy or outline.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1356',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to comment on and discuss published content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1357',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Enables the use of both personal and site-wide contact forms.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1358',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Defines CCK date/time fields and widgets.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1359',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Defines an email field type for cck',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1360',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Calendaring API, calendar display and export',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1361',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Handles the filtering of content in preparation for display.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1362',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Extends Drupal support for multilingual features.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1363',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI supporting multiple toolkits.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1364',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Dynamic image manipulator and cache.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1365',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1366',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows administrators to customize the site navigation menu.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1367',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows content to be submitted to the site and displayed on pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1368',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to rename URLs.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1369',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Supports configurable user profiles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1370',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Handles general site configuration for administrators.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1371',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Enables the categorization of content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1372',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows content to be translated into different languages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1373',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to upload and attach files to content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1374',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Manages the user registration and login system.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1375',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Variable API - Admin UI',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1376',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'This page shows you all available administration tasks for each module.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1377',
+  'location' => 'field.php:102 number.module:82 text.module:80',
+  'textgroup' => 'default',
+  'source' => 'is equal to',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1378',
+  'location' => 'field.php:103 number.module:83 text.module:81',
+  'textgroup' => 'default',
+  'source' => 'is not equal to',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1379',
+  'location' => 'field.php:104 text.module:82',
+  'textgroup' => 'default',
+  'source' => 'matches the pattern',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1380',
+  'location' => 'content_admin.inc:25 content.module:119',
+  'textgroup' => 'default',
+  'source' => 'duplicate',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1381',
+  'location' => 'number.module:52,  text.module:55',
+  'textgroup' => 'default',
+  'source' => 'The possible values this field can contain. Any other values will result in an error. Enter one value per line.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1382',
+  'location' => 'content.module:73',
+  'textgroup' => 'default',
+  'source' => 'add content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1383',
+  'location' => 'content.module:80',
+  'textgroup' => 'default',
+  'source' => 'fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1384',
+  'location' => 'content.module:164',
+  'textgroup' => 'default',
+  'source' => 'remove field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1385',
+  'location' => 'nodereference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing one node from another. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1386',
+  'location' => 'nodereference.module:26',
+  'textgroup' => 'default',
+  'source' => 'node reference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1387',
+  'location' => 'nodereference.module:204',
+  'textgroup' => 'default',
+  'source' => 'No post with that title exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1388',
+  'location' => 'number.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines numeric field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1389',
+  'location' => 'optionwidgets.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines selection, check box and radio button widgets for text and numeric fields. <em>Note: Requires content.module, text.module and number.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1390',
+  'location' => 'text.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines simple text field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1391',
+  'location' => 'userreference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing a user from a node. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1392',
+  'location' => 'userreference.module:176',
+  'textgroup' => 'default',
+  'source' => 'Invalid user name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1393',
+  'location' => 'weburl.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines simple weburl field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1394',
+  'location' => 'weburl.module:164;172',
+  'textgroup' => 'default',
+  'source' => 'Not a valid Web URL.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1395',
+  'location' => 'weburl.module:0',
+  'textgroup' => 'default',
+  'source' => 'weburl',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1396',
+  'location' => 'content_admin.inc:90',
+  'textgroup' => 'default',
+  'source' => 'The human-readable name of this content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1397',
+  'location' => 'content_admin.inc:98',
+  'textgroup' => 'default',
+  'source' => 'A brief description of the content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1398',
+  'location' => 'content_admin.inc:106',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user when adding new content of this type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1399',
+  'location' => 'content_admin.inc:110',
+  'textgroup' => 'default',
+  'source' => 'Title field label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1400',
+  'location' => 'content_admin.inc:113',
+  'textgroup' => 'default',
+  'source' => 'The label for the title field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1401',
+  'location' => 'content_admin.inc:118',
+  'textgroup' => 'default',
+  'source' => 'Save content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1402',
+  'location' => 'content_admin.inc:182',
+  'textgroup' => 'default',
+  'source' => 'Saved content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1403',
+  'location' => 'content_admin.inc:198',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to delete the content type %type?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1404',
+  'location' => 'content_admin.inc:198',
+  'textgroup' => 'default',
+  'source' => 'If you have any content left in this content type, it will be permanently deleted. This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1405',
+  'location' => 'content_admin.inc:220',
+  'textgroup' => 'default',
+  'source' => 'Deleted content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1406',
+  'location' => 'content_admin.inc:251',
+  'textgroup' => 'default',
+  'source' => 'remove',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1407',
+  'location' => 'content_admin.inc:313',
+  'textgroup' => 'default',
+  'source' => 'The human-readable name of this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1408',
+  'location' => 'content_admin.inc:326',
+  'textgroup' => 'default',
+  'source' => 'Create field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1409',
+  'location' => 'content_admin.inc:335',
+  'textgroup' => 'default',
+  'source' => 'No field modules are enabled. You need to <a href="%modules_url">enable one</a>, such as text.module, before you can add new fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1410',
+  'location' => 'content_admin.inc:487',
+  'textgroup' => 'default',
+  'source' => 'The field %field no longer exists in any content type, so it was deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1411',
+  'location' => 'content_admin.inc:522',
+  'textgroup' => 'default',
+  'source' => 'Widget settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1412',
+  'location' => 'content_admin.inc:526',
+  'textgroup' => 'default',
+  'source' => 'Widget',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1413',
+  'location' => 'content_admin.inc:541',
+  'textgroup' => 'default',
+  'source' => 'In the node editing form, the heavier fields will sink and the lighter fields will be positioned nearer the top.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1414',
+  'location' => 'content_admin.inc:552',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user below this field on the editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1415',
+  'location' => 'content_admin.inc:569',
+  'textgroup' => 'default',
+  'source' => 'Data settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1416',
+  'location' => 'content_admin.inc:579',
+  'textgroup' => 'default',
+  'source' => 'Multiple values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1417',
+  'location' => 'content_admin.inc:652',
+  'textgroup' => 'default',
+  'source' => 'Saved field %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1418',
+  'location' => 'content_admin.inc:882;971',
+  'textgroup' => 'default',
+  'source' => 'No PostgreSQL mapping found for %type data type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1419',
+  'location' => 'content_admin.inc:896;985',
+  'textgroup' => 'default',
+  'source' => 'database',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1420',
+  'location' => 'date.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines a date/time field type. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1421',
+  'location' => 'date.module:36',
+  'textgroup' => 'default',
+  'source' => 'Year',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1422',
+  'location' => 'date.module:37',
+  'textgroup' => 'default',
+  'source' => 'Year and month',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1423',
+  'location' => 'date.module:40',
+  'textgroup' => 'default',
+  'source' => 'Time only',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1424',
+  'location' => 'date.module:44',
+  'textgroup' => 'default',
+  'source' => 'Granularity',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1425',
+  'location' => 'date.module:102',
+  'textgroup' => 'default',
+  'source' => "Times are entered and displayed with site's time zone",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1426',
+  'location' => 'date.module:103',
+  'textgroup' => 'default',
+  'source' => "Times are entered and displayed with user's time zone",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1427',
+  'location' => 'date.module:107',
+  'textgroup' => 'default',
+  'source' => 'Time zone handling',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1428',
+  'location' => 'date.module:153',
+  'textgroup' => 'default',
+  'source' => '%name must be entered in ISO 8601 format (YYYYMMDDThh:mm:ss).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1429',
+  'location' => 'content.module:61',
+  'textgroup' => 'default',
+  'source' => 'content types',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1430',
+  'location' => 'content.module:67',
+  'textgroup' => 'default',
+  'source' => 'list',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1431',
+  'location' => 'modules/optionwidgets/optionwidgets.module:326',
+  'textgroup' => 'default',
+  'source' => '%name: this field cannot hold more than @count values.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1432',
+  'location' => 'includes/panels/content_types/content_field.inc:37',
+  'textgroup' => 'default',
+  'source' => '@type: (@field_type) @field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1433',
+  'location' => 'includes/panels/content_types/content_field.inc:44',
+  'textgroup' => 'default',
+  'source' => 'Field on the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1434',
+  'location' => 'includes/panels/content_types/content_field.inc:128',
+  'textgroup' => 'default',
+  'source' => 'Formatter',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1435',
+  'location' => 'includes/panels/content_types/content_field.inc:131',
+  'textgroup' => 'default',
+  'source' => 'Select a formatter.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1436',
+  'location' => 'includes/panels/content_types/content_field.inc:147',
+  'textgroup' => 'default',
+  'source' => '"@s" field (@name)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1437',
+  'location' => '/?q=zu/admin/settingsjhkjg',
+  'textgroup' => 'default',
+  'source' => 'Page not found',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1438',
+  'location' => '/?q=zu/admin/settingsjhkjg',
+  'textgroup' => 'default',
+  'source' => 'The requested page could not be found.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1439',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'English (built-in)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1440',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'n/a',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1441',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Zulu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1442',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1443',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Refresh',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1444',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'This page provides an overview of available translatable strings. Drupal displays translatable strings in text groups; modules may define additional text groups containing other translatable strings. Because text groups provide a method of grouping related strings, they are often used to focus translation efforts on specific areas of the Drupal interface.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1445',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Review the <a href="@languages">languages page</a> for more information on adding support for additional languages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1446',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'English',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1447',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'String contains',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1448',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Leave blank to show all strings. The search is case sensitive.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1449',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'All languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1450',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'English (provided by Drupal)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1451',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Search in',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1452',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Both translated and untranslated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1453',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Only translated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1454',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Only untranslated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1455',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Limit search to',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1456',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'All text groups',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1457',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'This page allows a translator to search for specific translated and untranslated strings, and is used when creating or editing translations. (Note: For translation tasks involving many strings, it may be more convenient to <a href="@export">export</a> strings for off-line editing in a desktop Gettext translation editor.) Searches may be limited to strings found within a specific text group or in a specific language.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1458',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Already added languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1459',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Languages not yet added',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1460',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Afar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1461',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Abkhazian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1462',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Avestan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1463',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Afrikaans',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1464',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Akan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1465',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Amharic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1466',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Arabic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1467',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Assamese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1468',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Avar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1469',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Aymara',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1470',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Azerbaijani',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1471',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bashkir',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1472',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Belarusian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1473',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bulgarian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1474',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bihari',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1475',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bislama',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1476',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bambara',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1477',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bengali',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1478',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tibetan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1479',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Breton',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1480',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bosnian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1481',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Catalan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1482',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chechen',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1483',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chamorro',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1484',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Corsican',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1485',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Cree',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1486',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Czech',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1487',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Old Slavonic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1488',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chuvash',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1489',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Welsh',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1490',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Danish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1491',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'German',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1492',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Maldivian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1493',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bhutani',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1494',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Ewe',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1495',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Greek',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1496',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Esperanto',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1497',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Spanish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1498',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Estonian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1499',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Basque',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1500',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Persian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1501',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Fulah',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1502',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Finnish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1503',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Fiji',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1504',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Faeroese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1505',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Frisian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1506',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Irish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1507',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Scots Gaelic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1508',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Galician',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1509',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Guarani',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1510',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Gujarati',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1511',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Manx',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1512',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Hausa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1513',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Hebrew',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1514',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Hindi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1515',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Hiri Motu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1516',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Croatian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1517',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Hungarian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1518',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Armenian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1519',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Herero',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1520',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Interlingua',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1521',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Indonesian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1522',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Interlingue',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1523',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Igbo',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1524',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Inupiak',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1525',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Icelandic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1526',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Italian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1527',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Inuktitut',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1528',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Japanese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1529',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Javanese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1530',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Georgian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1531',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kongo',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1532',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kikuyu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1533',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kwanyama',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1534',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kazakh',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1535',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Greenlandic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1536',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Cambodian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1537',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kannada',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1538',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Korean',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1539',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kanuri',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1540',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kashmiri',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1541',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kurdish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1542',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Komi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1543',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Cornish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1544',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kirghiz',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1545',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Latin',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1546',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Luxembourgish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1547',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Luganda',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1548',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Lingala',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1549',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Laothian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1550',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Lithuanian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1551',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Latvian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1552',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Malagasy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1553',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Marshallese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1554',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Maori',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1555',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Macedonian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1556',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Malayalam',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1557',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Mongolian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1558',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Moldavian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1559',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Marathi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1560',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Malay',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1561',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Maltese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1562',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Burmese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1563',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Nauru',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1564',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'North Ndebele',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1565',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Nepali',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1566',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Ndonga',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1567',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Dutch',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1568',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Norwegian Bokmål',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1569',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Norwegian Nynorsk',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1570',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'South Ndebele',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1571',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Navajo',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1572',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chichewa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1573',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Occitan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1574',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Oromo',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1575',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Oriya',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1576',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Ossetian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1577',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Punjabi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1578',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Pali',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1579',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Polish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1580',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Pashto',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1581',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Portuguese, Portugal',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1582',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Portuguese, Brazil',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1583',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Quechua',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1584',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Rhaeto-Romance',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1585',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kirundi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1586',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Romanian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1587',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Russian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1588',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Kinyarwanda',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1589',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sanskrit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1590',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sardinian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1591',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sindhi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1592',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Northern Sami',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1593',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sango',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1594',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Serbo-Croatian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1595',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sinhala',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1596',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Slovak',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1597',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Slovenian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1598',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Samoan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1599',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Shona',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1600',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Somali',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1601',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Albanian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1602',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Serbian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1603',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Siswati',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1604',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sesotho',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1605',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Sudanese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1606',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Swedish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1607',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Swahili',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1608',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tamil',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1609',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Telugu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1610',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tajik',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1611',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Thai',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1612',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tigrinya',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1613',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Turkmen',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1614',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tagalog',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1615',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Setswana',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1616',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tonga',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1617',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Turkish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1618',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tsonga',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1619',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tatar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1620',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Twi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1621',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tahitian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1622',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Uighur',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1623',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Select text groups',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1624',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Ukrainian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1625',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'If a text group is no showing up here it means this feature is not implemented for it.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1626',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Urdu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1627',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Refresh strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1628',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Uzbek',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1629',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'This will create all the missing strings for the selected text groups.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1630',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Venda',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1631',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Select languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1632',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Vietnamese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1633',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Update translations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1634',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Wolof',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1635',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'This will fetch all existing translations from the localization tables for the selected text groups and languages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1636',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Xhosa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1637',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Yiddish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1638',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Yoruba',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1639',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'On this page you can refresh and update values for user defined strings.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1640',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Zhuang',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1641',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Use the refresh option when you are missing strings to translate for a given text group. All the strings will be re-created keeping existing translations.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1642',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chinese, Simplified',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1643',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'Use the update option when some of the strings had been previously translated with the localization system, but the translations are not showing up for the configurable strings.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1644',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chinese, Traditional',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1645',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => 'To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1646',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Import translation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1647',
+  'location' => '/?q=zu/admin/build/translate/refresh',
+  'textgroup' => 'default',
+  'source' => '<strong>Important:</strong> To configure which Input formats are safe for translation, visit the <a href="@configure-strings">configure strings</a> page before refreshing your strings.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1648',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Language file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1649',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'A Gettext Portable Object (<em>.po</em>) file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1650',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Import into',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1651',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Choose the language you want to add strings into. If you choose a language which is not yet set up, it will be added.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1652',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Text group',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1653',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Imported translations will be added to this text group.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1654',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1655',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Strings in the uploaded file replace existing ones, new ones are added',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1656',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Existing strings are kept, only new strings are added',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1657',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'This page imports the translated strings contained in an individual Gettext Portable Object (<em>.po</em>) file. Normally distributed as part of a translation package (each translation package may contain several <em>.po</em> files), a <em>.po</em> file may need to be imported after off-line editing in a Gettext translation editor. Importing an individual <em>.po</em> file may be a lengthy process.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1658',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Note that the <em>.po</em> files within a translation package are imported automatically (if available) when new modules or themes are enabled, or as new languages are added. Since this page only allows the import of one <em>.po</em> file at a time, it may be simpler to download and extract a translation package into your Drupal installation directory and <a href="@language-add">add the language</a> (which automatically imports all <em>.po</em> files within the package). Translation packages are available for download on the <a href="@translations">Drupal translation page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1659',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
+  'textgroup' => 'default',
+  'source' => 'Variable name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1660',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
+  'textgroup' => 'default',
+  'source' => 'Is multilingual',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1661',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
+  'textgroup' => 'default',
+  'source' => 'Has translations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1662',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
+  'textgroup' => 'default',
+  'source' => 'Delete all existing translations for variables.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1663',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
+  'textgroup' => 'default',
+  'source' => 'Delete all translations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1664',
+  'location' => 'type:forum:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Forum topic',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1665',
+  'location' => 'type:forum:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Subject',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1666',
+  'location' => 'type:forum:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1667',
+  'location' => 'type:forum:description',
+  'textgroup' => 'nodetype',
+  'source' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1668',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1669',
+  'location' => 'modules/nodereference/nodereference.module:117',
+  'textgroup' => 'default',
+  'source' => "Choose the \"Views module\" view that selects the nodes that can be referenced.<br />Note:<ul><li>Only views that have fields will work for this purpose.</li><li>This will discard the \"Content types\" settings above. Use the view's \"filters\" section instead.</li><li>Use the view's \"fields\" section to display additional informations about candidate nodes on node creation/edition form.</li><li>Use the view's \"sort criteria\" section to determine the order in which candidate nodes will be displayed.</li></ul>",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1670',
+  'location' => 'modules/nodereference/nodereference.module:175',
+  'textgroup' => 'default',
+  'source' => "%name: This post can't be referenced.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1671',
+  'location' => 'modules/nodereference/nodereference.module:518',
+  'textgroup' => 'default',
+  'source' => '%name: Title mismatch. Please check your selection.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1672',
+  'location' => 'vocabulary:6:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1673',
+  'location' => 'vocabulary:7:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Forums',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1674',
+  'location' => 'item:463:title',
+  'textgroup' => 'menu',
+  'source' => 'fr - Test 1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1675',
+  'location' => 'item:463:description',
+  'textgroup' => 'menu',
+  'source' => 'fr - Test menu link 1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1676',
+  'location' => 'item:138:title',
+  'textgroup' => 'menu',
+  'source' => 'Test 1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1677',
+  'location' => 'item:138:description',
+  'textgroup' => 'menu',
+  'source' => 'Test menu link 1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1678',
+  'location' => 'field:profile_really_really_love_migrating:title',
+  'textgroup' => 'profile',
+  'source' => 'I really, really, really love migrating',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1679',
+  'location' => 'menu:menu-translation-test:title',
+  'textgroup' => 'menu',
+  'source' => 'Translation test',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1680',
+  'location' => 'field:employee-field_company:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Company',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1681',
+  'location' => 'field:employee-field_commander:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Commanding Officer',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1682',
+  'location' => 'field:employee-field_company_2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Company 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1683',
+  'location' => 'field:employee-field_company_3:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Company 3',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1684',
+  'location' => 'field:page-field_reference:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Reference',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1685',
+  'location' => 'field:page-field_reference_2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Reference',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1686',
+  'location' => 'field:story-field_test_string_selectlist:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'String Select List Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1689',
+  'location' => 'field:test_planet-field_test_text_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1690',
+  'location' => 'field:field_test_string_selectlist:option_A',
+  'textgroup' => 'cck',
+  'source' => 'Black',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1691',
+  'location' => 'field:field_test_string_selectlist:option_B',
+  'textgroup' => 'cck',
+  'source' => 'White',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1692',
+  'location' => 'term:14:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Talos IV',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1693',
+  'location' => 'term:15:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Vulcan',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1694',
+  'location' => 'term:14:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'The home of Captain Christopher Pike.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1695',
+  'location' => 'field:profile_:title',
+  'textgroup' => 'profile',
+  'source' => 'Number of trees',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '1696',
+  'location' => 'field:profile_:options',
+  'textgroup' => 'profile',
+  'source' => "10\r\n20\r\n50\r\n100\r\n1000",
+  '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(
+    'language',
+    'lid',
+    'plural',
+  ),
+  'indexes' => array(
+    'lid' => array(
+      'lid',
+    ),
+    'plid' => array(
+      'plid',
+    ),
+    'plural' => array(
+      'plural',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('locales_target')
+->fields(array(
+  'lid',
+  'translation',
+  'language',
+  'plid',
+  'plural',
+  'i18n_status',
+))
+->values(array(
+  'lid' => '5',
+  'translation' => "Le module Content, composant obligatoire du kit CCK (Content Construction Kit) permet aux administrateurs d'associer des champs personnalisés à des types de contenus. Au sein de Drupal, les types de contenus servent à définir les caractéristiques d'une publication, y compris le titre et la description des champs affichés sur ses pages \"ajouter\" et \"éditer\". Le module Content (et les modules auxiliaires inclus dans CCK) permet d'ajouter des champs personnalisés en plus des champs par défaut \"Titre\" et \"Corps\". Les fonctionnalités de CCK sont accessible via différents onglets sur la <a href=\"@content-types\">page d'administration des types de contenus</a>. (Voir la <a href=\"@node-help\">page d'aide du module Node</a> pour plus d'informations sur les types de contenus).",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '6',
+  'translation' => "Lorsque vous ajoutez un champ personnalisé à un type de contenu, vous déterminez son type (c'est-à-dire s'il doit contenir du texte, des nombres ou des références à d'autres objets) et la façon dont il doit être affiché (en tant que champ ou zone de texte, liste de sélection, case à cocher, bouton radio, ou champ à auto-complètement). Un champ peut présenter plusieurs valeurs (par exemple, une \"personne\" peut disposer de plusieurs adresses courriel) ou une seule (par exemple, un \"employé\" possède un numéro d'identification unique). À mesure que vous ajoutez et modifiez des champs, CCK ajuste automatiquement la structure de la base de données en fonction. CCK propose également un certain nombre d'autres fonctionnalités, par exemple un cache intelligent pour vos données personnalisées, des fonctionnalités d'import et d'export pour les définitions de types de contenus, ainsi qu'une intégration à d'autres modules provenant des contributions.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '7',
+  'translation' => "Des types de champs personnalisés sont proposés par plusieurs modules optionnels inclus dans CCK (chaque module fournissant un type différent). La <a href=\"@modules\">page des modules</a> vous permet d'activer ou de désactiver des composants CCK. Une installation par défaut de CCK inclut :",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '8',
+  'translation' => "<em>Number</em>, qui ajoute des types de champs numériques (formats entier, décimal ou réel à virgule flottante). Vous pouvez définir un jeu ou un intervalle de valeurs autorisées. Divers formats sont disponibles pour l'affichage des données numériques.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '9',
+  'translation' => "<em>Text</em>, qui ajoute des types de champs de texte. Un champ texte peut contenir du texte brut uniquement ou, optionnellement, utiliser les filtres des formats d'entrée que propose Drupal pour gérer en toute sécurité des textes enrichis. Les champs de saisie de texte peuvent être constitués d'une seule ligne (champ texte), de plusieurs lignes (zone de texte) ou, pour un meilleur contrôle des valeurs saisies, une liste de sélection, des cases à cocher ou des boutons radio. Si besoin, CCK peut valider les saisies sur la base d'un ensemble de valeurs autorisées.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '10',
+  'translation' => '<em>Node Reference</em>, qui crée des références personnalisées entre nœuds de Drupal. En ajoutant, par exemple, un champ <em>nodereference</em> et deux types de contenus différents, vous pouvez facilement créer des relations complexes de type parent/enfant entre données (par exemple plusieurs nœuds "employé" peuvent présenter un champ <em>nodereference</em> pointant vers un même nœud "employeur").',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '11',
+  'translation' => "<em>User reference</em>, qui crée des références personnalisées vers les comptes des utilisateurs de votre site. En ajoutant un champ <em>userreference</em>, vous pouvez créer des relations complexes entre les utilisateurs de votre site et des publications. Ainsi, pour tracer l'implication d'un utilisateur dans une publication (au delà du champ Drupal standard <em>Écrit par</em>), vous pouvez ajouter à un type de contenu un champ <em>userreference</em> intitulé \"Édité par\" pour enregistrer un lien vers la page du compte utilisateur ayant édité la publication.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '12',
+  'translation' => "<em>Fieldgroup</em>, qui crée des groupes de champs liés. Les groupe de champ peuvent être repliés, et vous pouvez choisir qu'ils soient dépliés ou repliés par défaut. L'ordre des groupes de champs, ainsi que l'ordre des champs au sein d'un groupe, est géré grâce à l'interface par glisser-déposer fournie par le module Content.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '13',
+  'translation' => "Pour plus d'informations, reportez-vous à l'entrée de manuel en ligne relative à <a href=\"@handbook-cck\">CCK</a> ou à la <a href=\"@project-cck\">page du projet CCK</a>.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '14',
+  'translation' => 'Configurez ici la manière dont les champs et étiquettes de champs de ce type de contenu doivent être affichées, lorsque le contenu est vu en mode résumé ou en pleine page.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '15',
+  'translation' => "Configurez ici la façon dont les champs de ce type de contenu doivent être affichés lorsqu'il est rendu dans les contextes suivants.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '16',
+  'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '17',
+  'translation' => 'Ce champ est obligatoire.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '18',
+  'translation' => '!title : !required',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '19',
+  'translation' => 'Ordre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '20',
+  'translation' => 'Élément de flux RSS',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '21',
+  'translation' => 'Index de recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '22',
+  'translation' => 'Résultat de recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '23',
+  'translation' => 'Langue',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '24',
+  'translation' => 'Taxonomie',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '25',
+  'translation' => 'Fichiers attachés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '26',
+  'translation' => 'Mise à jour du type de champ %type avec le module %module.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '27',
+  'translation' => 'Mise à jour du type de widget %widget avec le module %module.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '28',
+  'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - à n'autoriser qu'avec précautions)",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '29',
+  'translation' => 'Gérer les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '30',
+  'translation' => 'Afficher les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '31',
+  'translation' => 'Général',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '32',
+  'translation' => 'Avancé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '33',
+  'translation' => 'Supprimer un champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '34',
+  'translation' => 'Content',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '35',
+  'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '36',
+  'translation' => 'CCK',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '37',
+  'translation' => 'Texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '38',
+  'translation' => "Les valeurs possibles pour ce champ. Saisissez une valeur par ligne, sous la forme <em>clé|libellé</em>. La clé est la valeur enregistrée dans la base de données, et elle doit correspondre au type de stockage du champ, %type. Le libellé est optionnel et, s'il n'est pas spécifié, la clé sera utilisée comme libellé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '39',
+  'translation' => 'Zone de texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '40',
+  'translation' => 'Ôter',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '41',
+  'translation' => 'Basique',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '42',
+  'translation' => 'Résumé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '43',
+  'translation' => 'NÅ“ud complet',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '44',
+  'translation' => 'RSS',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '45',
+  'translation' => 'Recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '46',
+  'translation' => 'Formulaire du module node.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '47',
+  'translation' => 'Formulaire du module locale.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '48',
+  'translation' => 'Paramètres du menu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '49',
+  'translation' => 'Formulaire du module menu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '50',
+  'translation' => 'Formulaire du module taxonomy.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '51',
+  'translation' => 'Livre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '52',
+  'translation' => 'Formulaire du module livre (book).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '53',
+  'translation' => 'Titre du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '54',
+  'translation' => 'Titre du module sondage (Poll)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '55',
+  'translation' => 'Choix du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '56',
+  'translation' => 'Choix du module sondage (poll).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '57',
+  'translation' => 'Paramètrage du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '58',
+  'translation' => 'Paramètres du module sondage (poll).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '59',
+  'translation' => 'Formulaire du module upload.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '60',
+  'translation' => 'contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '61',
+  'translation' => 'Champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '62',
+  'translation' => "Les mises à jour des modules liés à CCK ne sont pas exécutées tant que les modules ne sont pas activés sur la  <a href=\"@admin-modules-path\">page d'administration des modules</a>. Lorsque vous les activerez, vous devrez retourner sur la page <a href=\"@update-php\">update.php</a> et exécuter les mises à jour restantes.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '63',
+  'translation' => "!module.module possède des mises à jour mais ne peut pas être mis à jour car content.module n'est pas activé.<br /> Le cas échéant, lors de l'activation de content.module, vous devrez exécuter à nouveau le script de mise à jour. Vous continuerez à voir ce message jusqu'à ce que le module soit activé et les mises à jour exécutées.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '64',
+  'translation' => "!module.module possède des mises à jour et est disponible dans le répertoire des modules, mais n'est pas activé.<br /> Le cas échéant, lorsque vous l'aurez activé, vous devrez ré-exécuter le script de mise à jour. Vous continuerez à voir ce message jusqu'à l'activation du module et l'exécution des mises à jour. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '65',
+  'translation' => 'Des mises à jour sont toujours en attente. Veuillez retourner sur <a href="@update-php">update.php</a> et exécuter les mises à jour restarntes.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '66',
+  'translation' => 'CCK - Aucune Intégration aux Vues',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '67',
+  'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '68',
+  'translation' => 'Nom',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '69',
+  'translation' => 'Type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '70',
+  'translation' => 'Description',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '71',
+  'translation' => 'Opérations',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '72',
+  'translation' => 'éditer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '73',
+  'translation' => 'gérer les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '74',
+  'translation' => 'supprimer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '75',
+  'translation' => 'Aucun type de contenu disponible.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '76',
+  'translation' => '» Ajouter un nouveau type de contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '77',
+  'translation' => 'Nom du champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '78',
+  'translation' => 'Type de champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '79',
+  'translation' => 'Utilisé dans',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '80',
+  'translation' => '@field_name (Verrouillé)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '81',
+  'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '82',
+  'translation' => "Ce type de contenu possède des champs inactifs. Les champs inactifs ne sont pas inclus dans la liste de champs disponibles, jusqu'à l'activation des modules correspondants.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '83',
+  'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '84',
+  'translation' => 'Configurer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '85',
+  'translation' => 'Verrouillé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '86',
+  'translation' => '- Sélectionnez un type de champ -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '87',
+  'translation' => '- Sélectionnez un widget -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '88',
+  'translation' => 'Étiquette',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '89',
+  'translation' => 'Nom du champ (a-z, 0-9, _)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '90',
+  'translation' => 'Type de données à stocker.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '91',
+  'translation' => "Elément du formulaire pour l'édition des données.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '92',
+  'translation' => '- Sélectionnez un champ existant -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '93',
+  'translation' => 'Champ à partager',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '94',
+  'translation' => 'Nom du groupe (a-z, 0-9, _)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '95',
+  'translation' => 'Enregistrer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '96',
+  'translation' => 'Ajouter un nouveau champ : vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '97',
+  'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '98',
+  'translation' => "Ajouter un nouveau champ : le nom de champ %field_name n'est pas valide. Le nom doit seulement contenir des lettre minuscules non accentuées, des nombres, et des underscores. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '99',
+  'translation' => "Ajouter un nouveau champ : le nom de champ %field_name est trop long. Le nom est limité à 32 caractères, en comptant le préfixe 'field_'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '100',
+  'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '101',
+  'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '102',
+  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '103',
+  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '104',
+  'translation' => 'Ajouter un nouveau champ : widget non valide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '105',
+  'translation' => 'Ajouter un champ existant : vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '106',
+  'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '107',
+  'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '108',
+  'translation' => 'Ajouter un champ existant : widget non valide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '109',
+  'translation' => "Un problème est survenu à la création du champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '110',
+  'translation' => "Le champ %label n'a pas pu être ajouté au type de contenu car il est verrouillé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '111',
+  'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '112',
+  'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez ajouter de nouveaux champs sur la page <a href=\"@link\">Gérer les champs</a>.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '113',
+  'translation' => 'Au dessus',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '114',
+  'translation' => 'Sur la même ligne',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '115',
+  'translation' => 'Inclure',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '116',
+  'translation' => 'Exclure',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '117',
+  'translation' => 'aucune mise en forme',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '118',
+  'translation' => 'simple',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '119',
+  'translation' => 'groupe de champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '120',
+  'translation' => 'groupe de champs - repliable',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '121',
+  'translation' => 'groupe de champs - replié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '122',
+  'translation' => 'Vos paramètres ont été enregistrés.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '123',
+  'translation' => '@type : @field (@label)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '124',
+  'translation' => 'Éditer les informations de base',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '125',
+  'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut être changé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '126',
+  'translation' => "Nom lisible par une personne, destiné à servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '127',
+  'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données. Cette option ne peut être modifiée.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '128',
+  'translation' => 'Type de widget',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '129',
+  'translation' => "Type d'élément de formulaire que vous souhaitez présenter à l'utilisateur lorsqu'il renseigne ce champ dans le type de contenu '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '130',
+  'translation' => 'Continuer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '131',
+  'translation' => 'Les paramètres basiques du champ %label ont été mis à jour.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '132',
+  'translation' => 'Un problème a été rencontré lors de la mise à jour des paramètres basiques du champ %label.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '133',
+  'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '134',
+  'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '135',
+  'translation' => 'Annuler',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '136',
+  'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut être supprimé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '137',
+  'translation' => "Le champ '%field' de '%type' a été enlevé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '138',
+  'translation' => "Un problème est survenu à la suppression du champ '%field' du type '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '139',
+  'translation' => 'Le champ %field est verouillé et ne peut être édité.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '140',
+  'translation' => "Informations de base pour '%type'",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '141',
+  'translation' => 'Modifier les informations de base',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '142',
+  'translation' => "Paramètres de '%type'",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '143',
+  'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '144',
+  'translation' => "Texte d'aide",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '145',
+  'translation' => "Instructions à présenter à l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '146',
+  'translation' => 'Valeur par défaut',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '147',
+  'translation' => 'Code PHP',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '148',
+  'translation' => "'@column' => valeur de @column",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '149',
+  'translation' => "return array(\n  0 => array(@columns),\n  // Vous voudrez vous arrêter là dans la plupart des cas. Fournir plus de valeurs\n  // si vous souhaitez que votre 'valeur par défaut' ait des valeurs multiples :\n  1 => array(@columns),\n  2 => ...\n);",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '150',
+  'translation' => 'Code',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '151',
+  'translation' => "Usage avancé seulement : code PHP retournant une valeur par défaut. Ne doit pas contenir les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, la valeur retournée par ce code écrasera toute valeur spécifiée ci-dessus. Format attendu : <pre>!sample</pre>. Pour vous faire une idée du format attendu, vous pouvez utiliser l'onglet <em>devel load</em> fourni par <a href=\"@link_devel\">le module devel</a> sur une page de contenu de type  %type.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '152',
+  'translation' => '&lt;aucun&gt;',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '153',
+  'translation' => "Vous n'êtes pas autorisé à saisir du code PHP.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '154',
+  'translation' => 'Ce code PHP a été inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '155',
+  'translation' => 'Paramètres globaux',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '156',
+  'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '157',
+  'translation' => 'Obligatoire',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '158',
+  'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '159',
+  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '160',
+  'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà été créées peut conduire à perdre des données !',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '161',
+  'translation' => 'Nombre de valeurs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '162',
+  'translation' => 'Illimité',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '163',
+  'translation' => 'Enregistrer les paramètres du champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '164',
+  'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '165',
+  'translation' => 'La valeur par défaut est invalide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '166',
+  'translation' => "Le champ '%label' a été ajouté.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '167',
+  'translation' => "Champ '%label' enregistré.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '168',
+  'translation' => 'Exécution',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '169',
+  'translation' => 'La mise à jour a échoué.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '170',
+  'translation' => 'La base de données a été modifiée et des données ont été déplacées ou supprimées.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '171',
+  'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '172',
+  'translation' => "'%title' en cours de traitement",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '173',
+  'translation' => '%name doit être un entier.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '174',
+  'translation' => '%name doit être un entier positif.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '175',
+  'translation' => '%name doit être un nombre.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '176',
+  'translation' => '1 élément traité avec succès&nbsp:',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '177',
+  'translation' => '@count éléments traités avec succès&nbsp:',
+  'language' => 'fr',
+  'plid' => '176',
+  'plural' => '1',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '178',
+  'translation' => "La table de champs a été renommée de '%old_name' à '%new_name' et les instances des champs ont été mises à jour.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '179',
+  'translation' => "La table de champs '%name' a été supprimée.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '180',
+  'translation' => 'Ajouter un autre élément',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '181',
+  'translation' => 'Contenu du champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '182',
+  'translation' => 'Un champ de contenu du node référencé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '183',
+  'translation' => 'Noeud',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '184',
+  'translation' => 'Contexte du noeud',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '185',
+  'translation' => 'Titre du bloc',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '186',
+  'translation' => 'Caché',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '187',
+  'translation' => "Configurer la manière dont l'étiquette est affichée.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '188',
+  'translation' => 'Champ / Formateur',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '189',
+  'translation' => 'Sélectionner un champ et un formateur.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '190',
+  'translation' => '"@s" champ @name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '191',
+  'translation' => 'Remplir un champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '192',
+  'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '193',
+  'translation' => 'Champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '194',
+  'translation' => 'Sélectionnez le nom-machine du champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '195',
+  'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '196',
+  'translation' => "Usage avancé seulement : code PHP retournant la valeur à définir. Ne doit pas contenir les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, la valeur retournée par ce code écrasera toute valeur spécifiée ci-dessus. Format attendu : <pre>!sample</pre>. Pour vous faire une idée du format attendu, vous pouvez utiliser l'onglet <em>devel load</em> fourni par <a href=\"@link_devel\">le module devel</a> sur une page de contenu de type  %type.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '197',
+  'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '198',
+  'translation' => "Remplir le champ '@field' de @node",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '199',
+  'translation' => 'Le champ possède une valeur',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '200',
+  'translation' => 'Vous devez vous assurer que le champ utilisé existe dans le type de contenu donné. La condition retourne TRUE, si le champ sélectionné possède la valeur donnée.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '201',
+  'translation' => 'Le champ a été modifié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '202',
+  'translation' => 'Contenu contenant des modifications',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '203',
+  'translation' => 'Contenu ne contenant pas de modification',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '204',
+  'translation' => "Le champ '@field' de @node possède une valeur",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '205',
+  'translation' => 'Sélectionnez le nom-machine du champ à voir.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '206',
+  'translation' => "Le champ '@field' de @node a été modifié",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '207',
+  'translation' => 'Jeton (Token)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '208',
+  'translation' => 'Identifiant du nœud référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '209',
+  'translation' => 'Titre du nœud référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '210',
+  'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '211',
+  'translation' => 'Lien html formaté vers le noeud référencé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '212',
+  'translation' => 'Alias de chemin relatif vers le noeud référencé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '213',
+  'translation' => 'Alias de chemin absolu vers le noeud référencé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '214',
+  'translation' => 'Valeur numérique brute',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '215',
+  'translation' => 'Valeur numérique mise en forme',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '216',
+  'translation' => 'Texte brut, non filtré',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '217',
+  'translation' => 'Texte filtré et mis en forme',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '218',
+  'translation' => "Identifiant de l'utilisateur référencé",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '219',
+  'translation' => "Nom de l'utilisateur référencé",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '220',
+  'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '221',
+  'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '222',
+  'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '223',
+  'translation' => '@label (!name)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '224',
+  'translation' => '@label (!name) - !column',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '225',
+  'translation' => '@label-truncated - !column',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '226',
+  'translation' => 'Apparaît dans : @types',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '227',
+  'translation' => 'Aucun',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '228',
+  'translation' => 'Étiquette du widget (@label)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '229',
+  'translation' => 'Personnalisé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '230',
+  'translation' => 'Étiquette personnalisée',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '231',
+  'translation' => 'Format',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '232',
+  'translation' => 'Grouper plusieurs valeurs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '233',
+  'translation' => "Si non coché, chaque élément du champ créera une nouvelle ligne, ce qui pourrait apparemment entraîner des doublons. Ce paramètre n'est pas compatible avec le tri par clic dans l'affichage du tableau. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '234',
+  'translation' => 'Afficher @count valeur(s)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '235',
+  'translation' => 'en commençant à @count',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '236',
+  'translation' => 'Inversé (commencer à partir des dernières valeurs)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '237',
+  'translation' => 'Tous / Toutes',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '238',
+  'translation' => 'Delta',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '239',
+  'translation' => "Le delta vous permet de sélectionner quel élément d'un champ à valeur multiple sera la clé de la relation. Sélectionnez \"1\" pour utiliser le premier élément, \"2\" pour le second et ainsi de suite. Si vous sélectionnez \"Tous\", chaque élément du champ créera une nouvelle ligne, ce qui pourrait causer des doublons.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '240',
+  'translation' => "Le delta vous permet de sélectionner quel élément d'un champ à valeur multiple sera utilisé pour les tris. Sélectionnez \"1\" pour utiliser le premier élément, \"2\" pour le second et ainsi de suite. Si vous sélectionnez \"Tous\", chaque élément du champ créera une nouvelle ligne, ce qui pourrait causer des doublons.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '241',
+  'translation' => 'Exporter',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '242',
+  'translation' => "Ce formulaire traitera un type de contenu et un ou plusieurs champs de ce type, pour en exporter les paramètres. Le code d'export ainsi généré peut être copié et collé dans la page d'import, vers la base de données courante ou vers une autre base de données. L'opération d'import ajoutera les champs à un type de contenu existant ou créera un nouveau type de contenu intégrant les champs sélectionnés.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '243',
+  'translation' => 'Types',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '244',
+  'translation' => 'Sélectionner le type de contenu à exporter.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '245',
+  'translation' => 'Données exportée',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '246',
+  'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, à l'aide de la fonction d'import.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '247',
+  'translation' => 'Types de contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '248',
+  'translation' => 'Type de contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '249',
+  'translation' => 'Séléctionnez le type de contenu dans lequel importer ces champs.<br />Sélectionnez &lt;Créer&gt; pour créer un nouveau type de contenu qui contiendra ces champs.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '250',
+  'translation' => 'Données à importer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '251',
+  'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '252',
+  'translation' => 'Importer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '253',
+  'translation' => "Un fichier a été préchargé pour l'import.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '254',
+  'translation' => "Les données d'import ne sont valides.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '255',
+  'translation' => "Les modules suivants doivent être activés pour que l'import fonctionne : '%modules'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '256',
+  'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '257',
+  'translation' => "Abandon. L'import n'a pas été réalisé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '258',
+  'translation' => "Une erreur s'est produite lors de l'ajout du nouveau type de contenu %type.<br> Veuillez vérifier les erreurs affichées pour plus de détails.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '259',
+  'translation' => "Le champ importé '%field_label' (%field_name) n'a pas été ajouté à '%type' car ce champ existe déjà.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '260',
+  'translation' => "Le champ importé '%field_label' (%field_name) a été ajouté au type de contenu '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '261',
+  'translation' => 'content_copy',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '262',
+  'translation' => 'Content Copy',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '263',
+  'translation' => "Permet d'importer et d'exporter des définitions de champs.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '264',
+  'translation' => "Les champs d'un groupe Standard sont indépendants les uns des autres, et chacun peut soit avoir une valeur unique, soit des valeurs multiples. Les champs d'un Multigroupe sont traités comme une ensemble répétable de champs à valeurs uniques.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '265',
+  'translation' => 'Multigroupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '266',
+  'translation' => 'Standard',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '267',
+  'translation' => 'Type de groupe.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '268',
+  'translation' => "Le champ %field a été mis à jour pour l'utilisation de valeurs %multiple, afin de correspondre au paramètre de valeur multipe du Multigroup %group.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '269',
+  'translation' => "Cette modification n'est pas autorisée. Le champ %field possède déjà des valeurs multiples dans la base de données, mais le groupe %group en autorise seulement %group_max. Effectuer cette modification pourrait entraîner la perte de données. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '270',
+  'translation' => "Cette modification n'est pas autorisée. Le champ %field manipule les valeurs multiples différemment du module Content. Effectuer cette modification pourrait entraîner la perte de données. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '271',
+  'translation' => "Vous êtes en train d'inclure le champ %field dans un Multigroupe",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '272',
+  'translation' => "Cette modification n'est pas autorisée. Le champ %field possède déjà des données créées, et utilise un widget qui stocke les données différemment dans un groupe Standard que dans un Multigroupe. Effectuer ce changement pourrait entraîner la perte de données.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '273',
+  'translation' => "Vous êtes en train de retirer le champ %field d'un Multigroupe",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '274',
+  'translation' => 'Simple',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '275',
+  'translation' => 'Groupe de champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '276',
+  'translation' => 'Ligne horizontale',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '277',
+  'translation' => 'Tableau - Colonne unique',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '278',
+  'translation' => 'Tableau - Colonnes multiples',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '279',
+  'translation' => '[Format du sous-groupe]',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '280',
+  'translation' => 'Paramètres multigroupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '281',
+  'translation' => 'Colonnes multiples',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '282',
+  'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '283',
+  'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '284',
+  'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '285',
+  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des éléments autant de fois qu'ils le souhaitent.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '286',
+  'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '287',
+  'translation' => 'Nombre de répétitions',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '288',
+  'translation' => 'Etiquettes',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '289',
+  'translation' => "Etiquettes pour chaque sous-groupe de champs. Les étiquettes peuvent être cachées ou affichées dans des contextes divers en utilisant l'écran 'Afficher les champs'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '290',
+  'translation' => 'Etiquette du sous-groupe %number',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '291',
+  'translation' => 'Le champ %field dans ce groupe possède déjà %multiple valeurs dans la base de données. Pour éviter la perte de données, vous ne pouvez définir le nombre de valeurs du Multigroupe à une valeur inférieure.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '292',
+  'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '293',
+  'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '294',
+  'translation' => 'Ajouter plus de valeurs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '295',
+  'translation' => 'content_multigroup',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '296',
+  'translation' => 'Contenu Multigroupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '297',
+  'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent à l'unisson.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '298',
+  'translation' => 'éditer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '299',
+  'translation' => 'field_name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '300',
+  'translation' => 'voir',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '301',
+  'translation' => 'content_permissions',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '302',
+  'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '303',
+  'translation' => 'Permissions sur les Contenus',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '304',
+  'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '305',
+  'translation' => 'Contenu du groupe de champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '306',
+  'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '307',
+  'translation' => '@group_label (@group_type_name)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '308',
+  'translation' => 'Fieldgroup',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '309',
+  'translation' => "Texte à afficher si un groupe n'a pas de données. Notez que le titre ne s'affichera pas sauf s'il est surclassé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '310',
+  'translation' => '"@s" groupe de champs @name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '311',
+  'translation' => 'Paramètres du formulaire',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '312',
+  'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nœud.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '313',
+  'translation' => 'Style',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '314',
+  'translation' => 'toujours déplié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '315',
+  'translation' => 'repliable',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '316',
+  'translation' => 'replié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '317',
+  'translation' => "Instructions à présenter à l'utilisateur dans le formulaire d'édition.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '318',
+  'translation' => "Paramètres d'affichage",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '319',
+  'translation' => "Ces paramètres s'appliquent au groupe à l'affichage du nœud.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '320',
+  'translation' => 'Description du groupe.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '321',
+  'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '322',
+  'translation' => 'Cette action est irréversible.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '323',
+  'translation' => "Le groupe '%group_name' a été supprimé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '324',
+  'translation' => 'aucun',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '325',
+  'translation' => 'Vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '326',
+  'translation' => 'Vous devez fournir un nom de groupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '327',
+  'translation' => "Le nom de groupe %group_name n'est pas valide. Le nom ne doit contenir que des lettres sans accents, des nombres, et des underscores.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '328',
+  'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité à 32 caractères, le préfixe 'group_' compris.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '329',
+  'translation' => 'Le nom de groupe %group_name existe déjà.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '330',
+  'translation' => 'Ajouter un nouveau groupe :',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '331',
+  'translation' => 'Ajouter un nouveau groupe : vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '332',
+  'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '333',
+  'translation' => 'Groupe standard',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '334',
+  'translation' => 'Éditer le groupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '335',
+  'translation' => 'fieldgroup',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '336',
+  'translation' => "Créée des groupes d'affichage pour les champs CCK.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '337',
+  'translation' => 'Charge un noeud référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '338',
+  'translation' => 'Contenu contenant le champ node reference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '339',
+  'translation' => 'Contenu référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '340',
+  'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '341',
+  'translation' => "Il n'y a aucun champ  nodereference défini.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '342',
+  'translation' => 'Node référence',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '343',
+  'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '344',
+  'translation' => 'Types de contenu pouvant être référencés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '345',
+  'translation' => 'Vues par défaut',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '346',
+  'translation' => 'Vues éxistantes',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '347',
+  'translation' => 'Avancé - Nœuds pouvant être référencés (Vue)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '348',
+  'translation' => 'Vue utilisée pour sélectionner les noeuds',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '349',
+  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant être référencés.<br />Note :</p>',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '350',
+  'translation' => "<ul><li>Seules les vues qui possèdent des champs fonctionneront à cet effet.</li><li>Ceci annulera les paramètres \"Types de contenu\" ci-dessus. Utilisez la section \"filtres\" de la vue à la place.</li><li>Utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires à propos des noeuds candidats sur le formulaire de création/édition.</li><li>Utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre dans lequel les noeuds candidats seront affichés.</li></ul>",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '351',
+  'translation' => 'Arguments de la vue',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '352',
+  'translation' => "Fournit une liste d'arguments, séparés par des virgules, à transmettre à la vue.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '353',
+  'translation' => "<p>La liste des noeuds pouvant être référencés peut s'appuyer sur une vue du \"module Views\" mais aucune vue appropriée n'a été trouvée. <br />Note :</p>",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '354',
+  'translation' => '%name : saisie non valide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '355',
+  'translation' => '%name : ce contenu ne peut être référencé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '356',
+  'translation' => 'Titre (avec lien)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '357',
+  'translation' => 'Titre (sans lien)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '358',
+  'translation' => 'Liste de sélection',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '359',
+  'translation' => 'Cases à cocher/boutons radio',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '360',
+  'translation' => 'Champ texte à auto-complètement',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '361',
+  'translation' => "Correspondance de l'autocomplétion",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '362',
+  'translation' => 'Commence par',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '363',
+  'translation' => 'Contient',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '364',
+  'translation' => "Séléctionnez la méthode utilisée pour collecter les suggestions de l'autocomplétion. Notez que <em>Contient</em> peut engendrer des problèmes de performances sur des sites avec des milliers de noeuds",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '365',
+  'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '366',
+  'translation' => "%name : aucun contenu valide n'a été trouvé pour ce titre.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '367',
+  'translation' => 'Autocomplétion de nodereference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '368',
+  'translation' => 'nodereference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '369',
+  'translation' => 'Node Reference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '370',
+  'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '371',
+  'translation' => 'Entier',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '372',
+  'translation' => 'Stocke un nombre dans la base de données en format entier.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '373',
+  'translation' => 'Décimal',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '374',
+  'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '375',
+  'translation' => 'Réel (Float)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '376',
+  'translation' => 'Stocke un nombre dans la base de données en format réel.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '377',
+  'translation' => 'Minimum',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '378',
+  'translation' => 'Maximum',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '379',
+  'translation' => 'Précision',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '380',
+  'translation' => 'Le nombre total de chiffres à stocker dans la base de données, en incluant ceux à droite de la virgule.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '381',
+  'translation' => 'Echelle',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '382',
+  'translation' => 'Le nombre de chiffres à droite de la virgule',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '383',
+  'translation' => 'Séparateur de décimales',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '384',
+  'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '385',
+  'translation' => 'Préfixe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '386',
+  'translation' => 'Définissez une chaîne de caractères à utiliser pour préfixer la valeur, par exemple $ ou €. Laissez vide pour ne rien afficher de plus. Séparez les valeurs singulier et pluriel par une barre verticale (euro|euros).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '387',
+  'translation' => 'Suffixe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '388',
+  'translation' => 'Définissez une chaîne qui sera ajoutée en suffixe à la valeur, comme m², m/s², kb/s. Laisser vide pour aucun suffixe. Séparez les singulier et pluriel avec un pipe (mètre|mètres).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '389',
+  'translation' => 'Valeurs autorisées',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '390',
+  'translation' => 'Liste des valeurs autorisées',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '391',
+  'translation' => "Les valeurs possibles que ce champ peut contenir. Entrez une valeur par ligne, sous la forme clé|étiquette. La clé est une valeur qui sera stocker dans la base de données, elle doit correspondre au type de champ défini (%type). L'étiquette est optionnelle, si elle n'est pas précisée, la clé sera utilisée également comme étiquette.<br />Balises HTML autorisées : @tags",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '392',
+  'translation' => 'Pour usage avancé seulement : code PHP fournissant un tableau par clé des valeurs autorisées. Ne doit pas inclure les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, le tableau renvoyé par le code prendra le pas sur la liste des valeurs autorisées apparaissant ci-dessus.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '393',
+  'translation' => 'Ce code PHP a été saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '394',
+  'translation' => '@label (!name) - Valeurs autorisées',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '395',
+  'translation' => '"Minimum" doit être un nombre.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '396',
+  'translation' => '"Maximum" doit être un nombre.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '397',
+  'translation' => '%name : la valeur ne peut être inférieure à %min.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '398',
+  'translation' => '%name : la valeur ne peut être supérieure à %max.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '399',
+  'translation' => '%name : valeur illégale.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '400',
+  'translation' => 'non mis en forme',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '401',
+  'translation' => 'Champ texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '402',
+  'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '403',
+  'translation' => 'Seuls les nombres sont autorisés dans %field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '404',
+  'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '405',
+  'translation' => 'nombre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '406',
+  'translation' => 'Nombre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '407',
+  'translation' => 'Définit des types de champs numériques.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '408',
+  'translation' => "Créez une liste d'options en tant que liste dans la <strong>Liste des valeurs autorisées</strong>, ou en tant que tableau en code PHP. Ces valeurs seront les mêmes pour le champ %field au sein de tous les types de contenu.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '409',
+  'translation' => "Pour un widget 'case à cocher oui/non', définissez la valeur 'non' en premier, puis la valeur 'oui', dans la section <strong>Valeurs autorisées</strong>. Notez que la case à cocher sera étiquetée avec l'étiquette de la valeur du 'oui'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '410',
+  'translation' => "Le widget 'cases à cocher/boutons radio' affichera des cases à cocher si l'option valeurs multiples est sélectionnées pour ce champ, autrement, des boutons radio seront affichés.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '411',
+  'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '412',
+  'translation' => 'Case à cocher on/off unique',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '413',
+  'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '414',
+  'translation' => 'N/A',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '415',
+  'translation' => '- Aucun -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '416',
+  'translation' => 'optionwidgets',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '417',
+  'translation' => 'Option Widgets',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '418',
+  'translation' => 'Définit des widgets de liste déroulante, case à cocher et bouton radio pour des champs texte et numériques.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '419',
+  'translation' => 'Enregistre le texte dans la base de données.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '420',
+  'translation' => 'Texte simple',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '421',
+  'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '422',
+  'translation' => 'Traitement du texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '423',
+  'translation' => 'Taille maximale',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '424',
+  'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '425',
+  'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '426',
+  'translation' => 'Par défaut',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '427',
+  'translation' => 'Coupé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '428',
+  'translation' => 'Zone de texte (plusieurs lignes)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '429',
+  'translation' => 'Taille du champ texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '430',
+  'translation' => 'Rangées',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '431',
+  'translation' => 'texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '432',
+  'translation' => 'Définit les types de champs en texte simple.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '433',
+  'translation' => 'Charge un utilisateur référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '434',
+  'translation' => 'Contenu contenant le champ userrefernece',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '435',
+  'translation' => 'Utilisateur référencé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '436',
+  'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '437',
+  'translation' => "Il n'y a aucun champ userreference défini",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '438',
+  'translation' => 'User reference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '439',
+  'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '440',
+  'translation' => 'Rôles utilisateur pouvant être référencés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '441',
+  'translation' => 'Statuts utilisateur pouvant être référencés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '442',
+  'translation' => 'Actif',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '443',
+  'translation' => 'Bloqué',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '444',
+  'translation' => 'Avancé - Utilisateurs pouvant être référencés (Vue)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '445',
+  'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '446',
+  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant être référencés.<br />Note :</p>',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '447',
+  'translation' => "<ul><li>Seules les vues qui possèdent des champs fonctionneront à cet effet.</li><li>Ceci annulera les paramètres \"Rôles Référençables\" et \"Statut Référençable\" ci-dessus. Utilisez la section \"filtres\" de la vue à la place.</li><li>Utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires à propos des utilisateurs candidats sur le formulaire de création/édition.</li><li>Utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre dans lequel les utilisateurs candidats seront affichés.</li></ul>",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '448',
+  'translation' => "<p>La liste d'utilisateurs pouvant être référencés peut s'appueyr sur une vue du \"module Views\", mais aucune vue appropriée n'a été trouvée. <br />Note :</p>",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '449',
+  'translation' => '%name : utilisateur invalide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '450',
+  'translation' => "Séléctionnez la méthode utilisée pour collecter les suggestions de l'autocomplétion. Notez que <em>Contient</em> peut engendrer des problèmes de performances sur des sites avec des milliers d'utilisateurs.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '451',
+  'translation' => 'Lien retour',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '452',
+  'translation' => "Si cette option est sélectionnée, un lien réciproque vers le nœud référençant sera affiché dans l'enregistrement utilisateur référencé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '453',
+  'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '454',
+  'translation' => 'Contenu lié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '455',
+  'translation' => 'Autocomplétion Userreference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '456',
+  'translation' => 'userreference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '457',
+  'translation' => 'User Reference',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '458',
+  'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '459',
+  'translation' => 'Poids',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '460',
+  'translation' => 'Ajouter',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '461',
+  'translation' => 'Nouveau champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '462',
+  'translation' => 'Champ existant',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '463',
+  'translation' => 'Nouveau groupe',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '464',
+  'translation' => "Ajouter des champs et des groupes au type de contenu, et les paramétrer pour l'affichage du contenu et les formulaires de saisie.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '465',
+  'translation' => 'Vous pouvez ajouter un champ à un groupe en le faisant glisser ci-dessous et à la droite du groupe.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '466',
+  'translation' => "Note : l'installation du module <a href=\"!adv_help\">Aide avancée (Advanced help)</a> vous permettra d'accéder à plus d'aide, et de meilleure qualité.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '467',
+  'translation' => "Utiliser la case à cocher 'Exclure' pour exclure un élément de la valeur de !content transmis au gabarit du node.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '468',
+  'translation' => 'Supprimer cet élément',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '469',
+  'translation' => 'Ajouter un champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '470',
+  'translation' => "Valeur illégale pour le champ '%name'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '471',
+  'translation' => "La longueur de '%label' dépasse %max caractères.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '472',
+  'translation' => "Le champ 'Rangées' doit être un entier positif.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '473',
+  'translation' => "Les valeurs que ce champ peut contenir. Saisissez une valeur par ligne, au format clé|libellé. La clé est la valeur qui sera enregistrée dans la base de données et elle doit correspondre au type définit pour le champ dans la base, '%type'. Le libellé est optionnel et, si aucune valeur n'est spécifiée, la clé sera utilisée comme libellé.<br />Balises HTML autorisées : @tags",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '474',
+  'translation' => 'ajouter un champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '475',
+  'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '476',
+  'translation' => 'ajouter un nouveau champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '477',
+  'translation' => "Pour changer l'ordre d'un champ, utilisez la poignée qui figure sous la colonne Étiquette et faites glisser le champ jusqu'à l'emplacement désiré. Pour manipuler la poignée (l'icône en forme de croix), cliquez sur l'icône et maintenez enfoncé le bouton de la souris. N'oubliez pas que vos modifications ne seront prises en compte que lorsque vous aurez cliqué sur le bouton <em>Enregistrer</em> qui figure en base de page.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '478',
+  'translation' => "Aucun module de champs n'est activé. Vous devez en <a href=\"!modules_url\">activer un</a>, par exemple le module Text, avant de pouvoir ajouter des champs.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '479',
+  'translation' => 'Ajouter un champ existant',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '480',
+  'translation' => 'Créer un nouveau champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '481',
+  'translation' => 'Nom du champ, lisible par une machine.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '482',
+  'translation' => ' Ce nom ne peut être modifié.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '483',
+  'translation' => " Ce nom ne pourra pas être modifié par la suite ! Le nom sera préfixé par 'field_' et peut inclure des lettres minuscules non accentués, des nombres et des caractères \"espace souligné\". La longueur du nom, y compris le préfixe, est limitée à un total de 32 caractères.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '484',
+  'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '485',
+  'translation' => "Le nom de champ '%field_name' est invalide. Le nom ne doit comporter que des lettres minuscules non accentuées, des nombres ou des espaces soulignés.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '486',
+  'translation' => "Le nom de champ '%field_name' est trop long. La longueur du nom est limitée à 32 caractères, y compris le préfixe 'field_'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '487',
+  'translation' => "Le nom de champ '%field_name' existe déjà.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '488',
+  'translation' => "Le nom 'field_instance' est un nom réservé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '489',
+  'translation' => "Le champ '%label' a été créé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '490',
+  'translation' => "Mettre à jour le champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '491',
+  'translation' => "Un problème est survenu à la mise à jour du champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '492',
+  'translation' => "Réservé à une utilisation avancée : code PHP renvoyant la valeur par défaut du champ. Ne doit pas inclure les délimiteurs &lt;?php ?&gt;. Si ce champ est renseigné, la valeur renvoyée par le code supplante toute valeur indiquée ci-desus. Format attendu : <pre>!sample</pre> Vous pouvez utiliser l'onglet 'devel load' du module !link_devel sur un nœud de type '%type' pour mieux comprendre le format attendu.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '493',
+  'translation' => "Choisissez un nombre de valeurs pour ce champ, ou 'Illimité' pour proposer un bouton 'Ajouter' aux utilisateurs, de sorte qu'ils peuvent insérer autant de valeurs qu'ils le souhaitent.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '494',
+  'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '495',
+  'translation' => 'Lien HTML mis en forme vers le nœud',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '496',
+  'translation' => "La valeur de '%name 'ne peut être plus petite que %min.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '497',
+  'translation' => "La valeur de '%name' ne peut pas être plus grande que %max.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '498',
+  'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '499',
+  'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '500',
+  'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '501',
+  'translation' => "Créez une liste d'options en tant que liste dans les <strong>Valeurs permises</strong> ou en tant que tableau dans le code PHP. Ces valeurs seront identiques pour '%field' dans tous les types de contenus.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '504',
+  'translation' => 'fr - Favorite color',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '505',
+  'translation' => 'Inscrivez votre couleur préférée',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '506',
+  'translation' => 'fr - Personal information',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '507',
+  'translation' => 'fr - Biography',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '508',
+  'translation' => 'fr - Tell people a little bit about yourself',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '509',
+  'translation' => 'fr - Sell your email address?',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '510',
+  'translation' => "fr - If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '511',
+  'translation' => 'fr - Communication preferences',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '512',
+  'translation' => 'fr - Sales Category',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '513',
+  'translation' => "fr - Select the sales categories to which this user's address was sold.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '514',
+  'translation' => 'fr - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '515',
+  'translation' => 'fr - Administrative data',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '516',
+  'translation' => 'Mes groupes préférés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '517',
+  'translation' => "fr - Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '518',
+  'translation' => 'fr - Birthdate',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '519',
+  'translation' => "fr - Enter your birth date and we'll send you a coupon.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '520',
+  'translation' => "J'aime les migrations",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '1',
+))
+->values(array(
+  'lid' => '521',
+  'translation' => 'Si vous cochez cette case, vous aimez les migrations.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '522',
+  'translation' => 'fr - Blog',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '523',
+  'translation' => 'fr - Paste the full URL, including http://, of your personal blog.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '524',
+  'translation' => 'fr - Static Block',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '525',
+  'translation' => '<h3>fr - My first custom block body</h3>',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '526',
+  'translation' => 'Encore un bloc statique',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '527',
+  'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '528',
+  'translation' => 'fr - Tags',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '529',
+  'translation' => 'fr - vocabulary 1 (i=0)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '530',
+  'translation' => 'fr - vocabulary 2 (i=1)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '531',
+  'translation' => 'fr - vocabulary 3 (i=2)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '532',
+  'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '533',
+  'translation' => 'fr - Article',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '534',
+  'translation' => 'fr - Title',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '535',
+  'translation' => 'fr - Body',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '536',
+  'translation' => 'fr - An <em>article</em>, content type.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '537',
+  'translation' => 'fr - Company',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '538',
+  'translation' => 'fr - Name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '539',
+  'translation' => 'fr - Description',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '540',
+  'translation' => 'fr - Company node type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '541',
+  'translation' => 'fr - Employee',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '542',
+  'translation' => 'fr - Name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '543',
+  'translation' => 'fr - Bio',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '544',
+  'translation' => 'fr - Employee node type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '545',
+  'translation' => 'fr - Sponsor',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '546',
+  'translation' => 'fr - Name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '547',
+  'translation' => 'fr - Body',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '548',
+  'translation' => 'fr - Sponsor node type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '549',
+  'translation' => 'fr - Story',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '550',
+  'translation' => 'fr - Title',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '551',
+  'translation' => 'fr - Body',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '552',
+  'translation' => "fr - 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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '553',
+  'translation' => 'fr - Migrate test event',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '554',
+  'translation' => 'fr - Event Name',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '555',
+  'translation' => 'fr - Body',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '556',
+  'translation' => 'fr - test event description here',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '558',
+  'translation' => 'fr - Migrate test page',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '559',
+  'translation' => 'fr - Title',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '560',
+  'translation' => 'fr - This is the body field label',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '561',
+  'translation' => "fr - 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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '562',
+  'translation' => 'fr - Migrate test planet',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '563',
+  'translation' => 'fr - Title',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '564',
+  'translation' => 'fr - Body',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '565',
+  'translation' => "fr - 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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '566',
+  'translation' => 'Migrer histoire de test',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '567',
+  'translation' => 'Titre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '568',
+  'translation' => 'Le corps',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '569',
+  'translation' => "A histoire, de forme semblable à un page, est idéal pour la création et l'affichage du contenu qui informe et pousse les visiteurs du site. Communiqués de presse, des annonces du site, et les entrées de blog comme informels peuvent être créés avec un histoire entrée. Par défaut, un histoire entrée est automatiquement présenté sur la page d'accueil initiale du site, et offre la possibilité de poster des commentaires.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '570',
+  'translation' => 'fr - Text Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '571',
+  'translation' => 'fr - An example text field without exclude.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '572',
+  'translation' => 'fr - Integer Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '573',
+  'translation' => 'fr - An example integer field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '574',
+  'translation' => 'fr - Text Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '575',
+  'translation' => 'fr - An example text field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '576',
+  'translation' => 'fr - Decimal Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '577',
+  'translation' => 'fr - An example decimal field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '578',
+  'translation' => 'fr - Float Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '579',
+  'translation' => 'fr - An example float field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '580',
+  'translation' => 'fr - Integer Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '581',
+  'translation' => 'fr - An example integer field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '582',
+  'translation' => 'fr - Integer Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '583',
+  'translation' => 'fr - An example integer field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '584',
+  'translation' => 'fr - Email Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '585',
+  'translation' => 'fr - An example email field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '586',
+  'translation' => 'fr - Link Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '587',
+  'translation' => 'fr - An example link field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '588',
+  'translation' => 'fr - File Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '589',
+  'translation' => 'fr - An example file field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '590',
+  'translation' => 'fr - Image Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '591',
+  'translation' => 'fr - An example image field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '592',
+  'translation' => 'fr - Date Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '593',
+  'translation' => 'fr - An example date field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '594',
+  'translation' => 'fr - Date Stamp Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '595',
+  'translation' => 'fr - An example date stamp field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '596',
+  'translation' => 'fr - Datetime Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '597',
+  'translation' => 'fr - An example datetime field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '598',
+  'translation' => 'fr - Phone Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '599',
+  'translation' => 'fr - An example phone field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '600',
+  'translation' => 'fr - Decimal Radio Buttons Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '601',
+  'translation' => 'fr - An example decimal field using radio buttons.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '604',
+  'translation' => 'fr - Float Single Checkbox Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '605',
+  'translation' => 'fr - An example float field using a single on/off checkbox.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '607',
+  'translation' => 'fr - 1.234',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '608',
+  'translation' => 'fr - Integer Select List Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '609',
+  'translation' => 'fr - An example integer field using a select list.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '611',
+  'translation' => 'fr - 2341',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '613',
+  'translation' => 'fr - 4123',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '614',
+  'translation' => 'fr - Text Single Checkbox Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '615',
+  'translation' => 'fr - An example text field using a single on/off checkbox.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '616',
+  'translation' => 'fr - Hello',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '617',
+  'translation' => 'fr - Goodbye',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '618',
+  'translation' => 'fr - Text Single Checkbox Field 2',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '619',
+  'translation' => 'fr - Checkbox that uses keys only and no label.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '620',
+  'translation' => 'fr - Off',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '621',
+  'translation' => 'fr - Hello',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '622',
+  'translation' => 'Champ de texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '623',
+  'translation' => 'fr - An example text field.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '624',
+  'translation' => 'fr - Decimal Field',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '625',
+  'translation' => 'Un exemple plusieurs valeurs champ décimal.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '627',
+  'translation' => 'fr - An example text field using a single on/off checkbox.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '633',
+  'translation' => 'fr - Drupal.org',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '634',
+  'translation' => 'fr - Test 2',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '635',
+  'translation' => 'fr - Test menu link 2',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '663',
+  'translation' => 'fr - Content management',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1254',
+  'translation' => 'fr - Modules',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1264',
+  'translation' => 'fr - By task',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1265',
+  'translation' => 'fr - By module',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1669',
+  'translation' => "Choisissez la vue du module Views qui sélectionne les nœuds pouvant être référencés.<br />Notez que :<ul><li>seules les vues présentant des champs fonctionneront dans ce cadre </li><li>ceci effacera les paramètres de \"Types de contenus\" figurant ci-dessus. Utilisez à la place la section \"filtres\" de la vue ;</li><li>utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires sur les nœuds candidats dans le formulaire de création/édition de nœud ;</li><li>utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre d'affichage des nœuds candidats.</li></ul>",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1670',
+  'translation' => "Champ '%name' : cette publication ne peut être référencée.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1671',
+  'translation' => "Champ '%name' : incohérence au niveau du titre. Merci de vérifier votre sélection.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1672',
+  'translation' => 'fr - Type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1678',
+  'translation' => 'fr - I really, really, really love migrating ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1690',
+  'translation' => 'Noir',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1692',
+  'translation' => 'fr - Talos IV',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1694',
+  'translation' => 'fr - The home of Captain Christopher Pike.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1696',
+  'translation' => "fr - 10\r\nfr - 20\r\nfr - 50\r\nfr - 100\r\nfr - 1000",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '66',
+  'translation' => 'zu - CCK - Aucune Intégration aux Vues',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '506',
+  'translation' => 'zu - Personal information',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '512',
+  'translation' => 'zu - Sales Category',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '513',
+  'translation' => "zu - Select the sales categories to which this user's address was sold.",
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '514',
+  'translation' => 'zu - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '525',
+  'translation' => '<h3>zu - My first custom block body</h3>',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '529',
+  'translation' => 'zu - vocabulary 1 (i=0)',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '535',
+  'translation' => 'zu - Body',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '590',
+  'translation' => 'zu - Image Field',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '591',
+  'translation' => 'zu - An example image field.',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '607',
+  'translation' => 'zu - 1.234',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '611',
+  'translation' => 'zu - 2341',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '621',
+  'translation' => 'zu - Hello',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '635',
+  'translation' => 'zu - Test menu link 2',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1672',
+  'translation' => 'zu - Type',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1690',
+  'translation' => 'Okumnyama',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1691',
+  'translation' => 'Mhlophe',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1693',
+  'translation' => 'zu - Vulcan',
+  'language' => 'zu',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '1694',
+  'translation' => 'zu - The home of Captain Christopher Pike.',
+  'language' => 'zu',
+  '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' => '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' => 'book-toc-1',
+  'mlid' => '1',
+  'plid' => '0',
+  'link_path' => 'node/4',
+  'router_path' => 'node/%',
+  'link_title' => 'Test top book title',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  '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' => 'book-toc-1',
+  'mlid' => '2',
+  'plid' => '1',
+  'link_path' => 'node/5',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title child 1',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '2',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-1',
+  'mlid' => '3',
+  'plid' => '2',
+  'link_path' => 'node/6',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title child 1.1',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '2',
+  'p3' => '3',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-1',
+  'mlid' => '4',
+  'plid' => '2',
+  'link_path' => 'node/7',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title child 1.2',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '2',
+  'p3' => '4',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-2',
+  'mlid' => '5',
+  'plid' => '0',
+  'link_path' => 'node/8',
+  'router_path' => 'node/%',
+  'link_title' => 'Test top book 2 title',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  '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' => 'secondary-links',
+  'mlid' => '138',
+  'plid' => '139',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'Test 1',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 1";}s:8:"langcode";s:2:"en";}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '2',
+  'customized' => '1',
+  'p1' => '139',
+  'p2' => '138',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'secondary-links',
+  'mlid' => '139',
+  'plid' => '0',
+  'link_path' => 'admin',
+  'router_path' => 'admin',
+  'link_title' => 'Test 2',
+  'options' => 'a:2:{s:5:"query";s:7:"foo=bar";s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 2";}}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '1',
+  'weight' => '-49',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '139',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'secondary-links',
+  'mlid' => '140',
+  'plid' => '0',
+  'link_path' => 'https://www.drupal.org',
+  'router_path' => '',
+  'link_title' => 'Drupal.org',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '140',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->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' => '145',
+  'plid' => '0',
+  'link_path' => 'contact',
+  'router_path' => 'contact',
+  'link_title' => 'Contact',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '145',
+  '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' => '149',
+  'plid' => '0',
+  'link_path' => 'profile',
+  'router_path' => 'profile',
+  'link_title' => 'User list',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '149',
+  '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' => '151',
+  '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' => '151',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '152',
+  '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' => '152',
+  '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' => '163',
+  'plid' => '149',
+  'link_path' => 'profile/autocomplete',
+  'router_path' => 'profile/autocomplete',
+  'link_title' => 'Profile autocomplete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '149',
+  'p2' => '163',
+  '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' => '171',
+  'plid' => '0',
+  'link_path' => 'user/timezone',
+  'router_path' => 'user/timezone',
+  'link_title' => 'User timezone',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '171',
+  'p2' => '0',
+  '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' => '183',
+  'plid' => '166',
+  'link_path' => 'admin/build/contact',
+  'router_path' => 'admin/build/contact',
+  'link_title' => 'Contact form',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:71:"Create a system contact form and set up categories for the form to use.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '183',
+  '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' => '193',
+  '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' => '193',
+  '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' => '198',
+  'plid' => '158',
+  'link_path' => 'node/add/test-event',
+  'router_path' => 'node/add/test-event',
+  'link_title' => 'Migrate test event',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:27:"test event description here";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '158',
+  'p2' => '198',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '199',
+  'plid' => '158',
+  'link_path' => 'node/add/test-page',
+  'router_path' => 'node/add/test-page',
+  'link_title' => 'Migrate test 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' => '199',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '200',
+  'plid' => '158',
+  'link_path' => 'node/add/test-planet',
+  'router_path' => 'node/add/test-planet',
+  'link_title' => 'Migrate test planet',
+  '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' => '200',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '201',
+  'plid' => '158',
+  'link_path' => 'node/add/test-story',
+  'router_path' => 'node/add/test-story',
+  'link_title' => 'Migrate test 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' => '201',
+  'p3' => '0',
+  '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' => '206',
+  'plid' => '170',
+  'link_path' => 'admin/user/profile',
+  'router_path' => 'admin/user/profile',
+  'link_title' => 'Profiles',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Create customizable fields for your users.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '170',
+  'p3' => '206',
+  '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' => '220',
+  'plid' => '206',
+  'link_path' => 'admin/user/profile/add',
+  'router_path' => 'admin/user/profile/add',
+  'link_title' => 'Add field',
+  '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' => '206',
+  'p4' => '220',
+  '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' => '229',
+  'plid' => '206',
+  'link_path' => 'admin/user/profile/delete',
+  'router_path' => 'admin/user/profile/delete',
+  'link_title' => 'Delete field',
+  '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' => '206',
+  'p4' => '229',
+  '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' => '232',
+  'plid' => '206',
+  'link_path' => 'admin/user/profile/edit',
+  'router_path' => 'admin/user/profile/edit',
+  'link_title' => 'Edit field',
+  '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' => '206',
+  'p4' => '232',
+  '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' => '237',
+  'plid' => '157',
+  'link_path' => 'admin/content/node-type/test-event',
+  'router_path' => 'admin/content/node-type/test-event',
+  'link_title' => 'Migrate test event',
+  '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' => '237',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '238',
+  'plid' => '157',
+  'link_path' => 'admin/content/node-type/test-page',
+  'router_path' => 'admin/content/node-type/test-page',
+  'link_title' => 'Migrate test 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' => '238',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '239',
+  'plid' => '157',
+  'link_path' => 'admin/content/node-type/test-planet',
+  'router_path' => 'admin/content/node-type/test-planet',
+  'link_title' => 'Migrate test planet',
+  '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' => '239',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '240',
+  'plid' => '157',
+  'link_path' => 'admin/content/node-type/test-story',
+  'router_path' => 'admin/content/node-type/test-story',
+  'link_title' => 'Migrate test 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' => '240',
+  'p4' => '0',
+  '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' => '242',
+  'plid' => '206',
+  'link_path' => 'admin/user/profile/autocomplete',
+  'router_path' => 'admin/user/profile/autocomplete',
+  'link_title' => 'Profile category autocomplete',
+  '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' => '206',
+  'p4' => '242',
+  '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' => '248',
+  'plid' => '186',
+  'link_path' => 'admin/settings/date-time/formats/lookup',
+  'router_path' => 'admin/settings/date-time/formats/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' => '248',
+  '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' => '253',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-event/delete',
+  'router_path' => 'admin/content/node-type/test-event/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' => '253',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '254',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-page/delete',
+  'router_path' => 'admin/content/node-type/test-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' => '254',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '255',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-planet/delete',
+  'router_path' => 'admin/content/node-type/test-planet/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' => '255',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '256',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-story/delete',
+  'router_path' => 'admin/content/node-type/test-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' => '256',
+  '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' => '258',
+  'plid' => '183',
+  'link_path' => 'admin/build/contact/delete/%',
+  'router_path' => 'admin/build/contact/delete/%',
+  'link_title' => 'Delete contact',
+  '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' => '183',
+  'p4' => '258',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '259',
+  'plid' => '186',
+  'link_path' => 'admin/settings/date-time/delete/%',
+  'router_path' => 'admin/settings/date-time/delete/%',
+  'link_title' => 'Delete date format type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:52:"Allow users to delete a configured date format type.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '186',
+  'p4' => '259',
+  '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' => '261',
+  'plid' => '183',
+  'link_path' => 'admin/build/contact/edit/%',
+  'router_path' => 'admin/build/contact/edit/%',
+  'link_title' => 'Edit contact category',
+  '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' => '183',
+  'p4' => '261',
+  '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' => '272',
+  'plid' => '186',
+  'link_path' => 'admin/settings/date-time/formats/delete/%',
+  'router_path' => 'admin/settings/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' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '186',
+  'p4' => '272',
+  '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' => '299',
+  'plid' => '0',
+  'link_path' => 'event',
+  'router_path' => 'event',
+  'link_title' => 'Events',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '300',
+  'plid' => '299',
+  'link_path' => 'event/dst',
+  'router_path' => 'event/dst',
+  'link_title' => 'Event dst view',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '300',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '301',
+  'plid' => '299',
+  'link_path' => 'event/ical',
+  'router_path' => 'event/ical',
+  'link_title' => 'Event ical feed',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '301',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '302',
+  'plid' => '299',
+  'link_path' => 'event/feed',
+  'router_path' => 'event/feed',
+  'link_title' => 'Event rss feed',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '302',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '303',
+  'plid' => '299',
+  'link_path' => 'event/type',
+  'router_path' => 'event/type',
+  'link_title' => 'Filter by content type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '303',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '304',
+  'plid' => '299',
+  'link_path' => 'event/term',
+  'router_path' => 'event/term',
+  'link_title' => 'Filter by taxonomy',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '299',
+  'p2' => '304',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '305',
+  'plid' => '0',
+  'link_path' => 'node/%/ical',
+  'router_path' => 'node/%/ical',
+  'link_title' => 'Event ical',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '305',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '306',
+  'plid' => '167',
+  'link_path' => 'admin/settings/event',
+  'router_path' => 'admin/settings/event',
+  'link_title' => 'Events',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Set up how your site handles events.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '306',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '307',
+  'plid' => '306',
+  'link_path' => 'admin/settings/event/overview',
+  'router_path' => 'admin/settings/event/overview',
+  'link_title' => 'Event overview',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Change how event summary information is displayed.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '306',
+  'p4' => '307',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '308',
+  'plid' => '306',
+  'link_path' => 'admin/settings/event/timezone',
+  'router_path' => 'admin/settings/event/timezone',
+  'link_title' => 'Timezone handling',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Change how timezone information is saved and displayed.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '306',
+  'p4' => '308',
+  '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' => '328',
+  'plid' => '0',
+  'link_path' => 'filefield/progress',
+  'router_path' => 'filefield/progress',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '328',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '329',
+  'plid' => '0',
+  'link_path' => 'filefield/ahah/%/%/%',
+  'router_path' => 'filefield/ahah/%/%/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '329',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '333',
+  'plid' => '167',
+  'link_path' => 'admin/settings/email',
+  'router_path' => 'admin/settings/email',
+  'link_title' => 'CCK Email Contact Form Settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '333',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '334',
+  'plid' => '0',
+  'link_path' => 'email/%/%',
+  'router_path' => 'email/%/%',
+  'link_title' => 'Email Contact Form',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '334',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '350',
+  'plid' => '0',
+  'link_path' => 'aggregator',
+  'router_path' => 'aggregator',
+  'link_title' => 'Feed aggregator',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '351',
+  'plid' => '350',
+  'link_path' => 'aggregator/categories',
+  'router_path' => 'aggregator/categories',
+  'link_title' => 'Categories',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '351',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '352',
+  'plid' => '350',
+  'link_path' => 'aggregator/opml',
+  'router_path' => 'aggregator/opml',
+  'link_title' => 'OPML feed',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '352',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '353',
+  'plid' => '350',
+  'link_path' => 'aggregator/rss',
+  'router_path' => 'aggregator/rss',
+  'link_title' => 'RSS feed',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '353',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '354',
+  'plid' => '350',
+  'link_path' => 'aggregator/sources',
+  'router_path' => 'aggregator/sources',
+  'link_title' => 'Sources',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '354',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '355',
+  'plid' => '351',
+  'link_path' => 'aggregator/categories/%',
+  'router_path' => 'aggregator/categories/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '351',
+  'p3' => '355',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '356',
+  'plid' => '354',
+  'link_path' => 'aggregator/sources/%',
+  'router_path' => 'aggregator/sources/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '350',
+  'p2' => '354',
+  'p3' => '356',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '357',
+  'plid' => '157',
+  'link_path' => 'admin/content/aggregator',
+  'router_path' => 'admin/content/aggregator',
+  'link_title' => 'Feed aggregator',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '157',
+  'p3' => '357',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '358',
+  'plid' => '357',
+  'link_path' => 'admin/content/aggregator/remove/%',
+  'router_path' => 'admin/content/aggregator/remove/%',
+  'link_title' => 'Remove items',
+  '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' => '357',
+  'p4' => '358',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '359',
+  'plid' => '357',
+  'link_path' => 'admin/content/aggregator/update/%',
+  'router_path' => 'admin/content/aggregator/update/%',
+  'link_title' => 'Update items',
+  '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' => '357',
+  'p4' => '359',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '360',
+  'plid' => '357',
+  'link_path' => 'admin/content/aggregator/edit/category/%',
+  'router_path' => 'admin/content/aggregator/edit/category/%',
+  'link_title' => 'Edit category',
+  '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' => '357',
+  'p4' => '360',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '361',
+  'plid' => '357',
+  'link_path' => 'admin/content/aggregator/edit/feed/%',
+  'router_path' => 'admin/content/aggregator/edit/feed/%',
+  'link_title' => 'Edit feed',
+  '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' => '357',
+  'p4' => '361',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '363',
+  'plid' => '0',
+  'link_path' => 'book',
+  'router_path' => 'book',
+  'link_title' => 'Books',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '364',
+  'plid' => '363',
+  'link_path' => 'book/js/form',
+  'router_path' => 'book/js/form',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '364',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '366',
+  'plid' => '157',
+  'link_path' => 'admin/content/book',
+  'router_path' => 'admin/content/book',
+  'link_title' => 'Books',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '157',
+  'p3' => '366',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '367',
+  'plid' => '363',
+  'link_path' => 'book/export/%/%',
+  'router_path' => 'book/export/%/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '367',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '369',
+  'plid' => '366',
+  'link_path' => 'admin/content/book/%',
+  'router_path' => 'admin/content/book/%',
+  'link_title' => 'Re-order book pages and change titles',
+  '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' => '366',
+  'p4' => '369',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '370',
+  'plid' => '0',
+  'link_path' => 'node/%/outline/remove',
+  'router_path' => 'node/%/outline/remove',
+  'link_title' => 'Remove from outline',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '370',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'secondary-links',
+  'mlid' => '393',
+  'plid' => '0',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'Test 3',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-47',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '393',
+  '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' => '397',
+  'plid' => '0',
+  'link_path' => 'system/files/imagecache',
+  'router_path' => 'system/files/imagecache',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '397',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '398',
+  'plid' => '167',
+  'link_path' => 'admin/settings/imageapi',
+  'router_path' => 'admin/settings/imageapi',
+  'link_title' => 'ImageAPI',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '398',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '399',
+  'plid' => '167',
+  'link_path' => 'admin/settings/language',
+  'router_path' => 'admin/settings/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' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '399',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '400',
+  'plid' => '166',
+  'link_path' => 'admin/build/translate',
+  'router_path' => 'admin/build/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' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '400',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '401',
+  'plid' => '399',
+  'link_path' => 'admin/settings/language/delete/%',
+  'router_path' => 'admin/settings/language/delete/%',
+  'link_title' => 'Confirm',
+  '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' => '399',
+  'p4' => '401',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '403',
+  'plid' => '400',
+  'link_path' => 'admin/build/translate/delete/%',
+  'router_path' => 'admin/build/translate/delete/%',
+  'link_title' => 'Delete string',
+  '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' => '400',
+  'p4' => '403',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '404',
+  'plid' => '399',
+  'link_path' => 'admin/settings/language/edit/%',
+  'router_path' => 'admin/settings/language/edit/%',
+  'link_title' => 'Edit language',
+  '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' => '399',
+  'p4' => '404',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '405',
+  'plid' => '400',
+  'link_path' => 'admin/build/translate/edit/%',
+  'router_path' => 'admin/build/translate/edit/%',
+  'link_title' => 'Edit string',
+  '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' => '400',
+  'p4' => '405',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '407',
+  'plid' => '0',
+  'link_path' => 'i18nstrings/save',
+  'router_path' => 'i18nstrings/save',
+  'link_title' => 'Save string',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '407',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '408',
+  'plid' => '0',
+  'link_path' => 'i18n/node/autocomplete',
+  'router_path' => 'i18n/node/autocomplete',
+  'link_title' => 'Node title autocomplete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '408',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '411',
+  'plid' => '0',
+  'link_path' => 'core/tests/fixtures/files/imagecache',
+  'router_path' => 'core/tests/fixtures/files/imagecache',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '411',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '412',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test/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' => '412',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '413',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_date/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' => '413',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '414',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/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' => '414',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '415',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/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' => '415',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '416',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/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' => '416',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '417',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_email/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' => '417',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '418',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/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' => '418',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '419',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/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' => '419',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '420',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/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' => '420',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '421',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_four/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' => '421',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '422',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/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' => '422',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '423',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/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' => '423',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '424',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/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' => '424',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '425',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/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' => '425',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '426',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_link/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' => '426',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '427',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_phone/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' => '427',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '428',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/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' => '428',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '429',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/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' => '429',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '430',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_three/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' => '430',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '431',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_two/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' => '431',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '432',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
+  'router_path' => 'admin/content/node-type/test-page/fields/field_test/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' => '432',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '433',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+  'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/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' => '433',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '434',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/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' => '434',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '438',
+  'plid' => '167',
+  'link_path' => 'admin/settings/variable',
+  'router_path' => 'admin/settings/variable',
+  'link_title' => 'Variables',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Edit and delete site variables.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '438',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '439',
+  'plid' => '438',
+  'link_path' => 'admin/settings/variable/edit/%',
+  'router_path' => 'admin/settings/variable/edit/%',
+  'link_title' => 'Edit variable',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '438',
+  'p4' => '439',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '440',
+  'plid' => '438',
+  'link_path' => 'admin/settings/variable/group/%',
+  'router_path' => 'admin/settings/variable/group/%',
+  'link_title' => 'Variables group',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Edit and delete group variables.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '438',
+  'p4' => '440',
+  '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' => '442',
+  'plid' => '165',
+  'link_path' => 'admin/reports/settings',
+  'router_path' => 'admin/reports/settings',
+  'link_title' => 'Access log settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Control details about what and how your site logs.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '442',
+  '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' => '445',
+  'plid' => '165',
+  'link_path' => 'admin/reports/hits',
+  'router_path' => 'admin/reports/hits',
+  'link_title' => 'Recent hits',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '445',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '446',
+  'plid' => '165',
+  'link_path' => 'admin/reports/pages',
+  'router_path' => 'admin/reports/pages',
+  'link_title' => 'Top pages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '446',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '447',
+  'plid' => '165',
+  'link_path' => 'admin/reports/referrers',
+  'router_path' => 'admin/reports/referrers',
+  'link_title' => 'Top referrers',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '447',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '448',
+  'plid' => '165',
+  'link_path' => 'admin/reports/visitors',
+  'router_path' => 'admin/reports/visitors',
+  'link_title' => 'Top visitors',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '448',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '449',
+  'plid' => '165',
+  'link_path' => 'admin/reports/access/%',
+  'router_path' => 'admin/reports/access/%',
+  'link_title' => 'Details',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '165',
+  'p3' => '449',
+  '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' => '455',
+  'plid' => '0',
+  'link_path' => 'nodereference/autocomplete',
+  'router_path' => 'nodereference/autocomplete',
+  'link_title' => 'Nodereference autocomplete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '455',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '456',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/employee/fields/field_company/remove',
+  'router_path' => 'admin/content/node-type/employee/fields/field_company/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' => '456',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '457',
+  'plid' => '0',
+  'link_path' => 'userreference/autocomplete',
+  'router_path' => 'userreference/autocomplete',
+  'link_title' => 'Userreference autocomplete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '457',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '458',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
+  'router_path' => 'admin/content/node-type/employee/fields/field_commander/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' => '458',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'primary-links',
+  'mlid' => '459',
+  'plid' => '0',
+  'link_path' => 'node/10',
+  'router_path' => 'node/%',
+  'link_title' => 'The Real McCoy',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '459',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'primary-links',
+  'mlid' => '460',
+  'plid' => '0',
+  'link_path' => 'node/11',
+  'router_path' => 'node/%',
+  'link_title' => 'Le Vrai McCoy',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '460',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'primary-links',
+  'mlid' => '461',
+  'plid' => '0',
+  'link_path' => 'node/12',
+  'router_path' => 'node/%',
+  'link_title' => 'Abantu zulu',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '461',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'primary-links',
+  'mlid' => '462',
+  'plid' => '0',
+  'link_path' => 'node/13',
+  'router_path' => 'node/%',
+  'link_title' => 'The Zulu People',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '462',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'secondary-links',
+  'mlid' => '463',
+  'plid' => '139',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'fr - Test 1',
+  'options' => 'a:3:{s:10:"attributes";a:1:{s:5:"title";s:21:"fr - Test menu link 1";}s:8:"langcode";s:2:"fr";s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-49',
+  'depth' => '2',
+  'customized' => '1',
+  'p1' => '139',
+  'p2' => '459',
+  'p3' => '0',
+  'p4' => '0',
+  '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' => '467',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/employee/fields/field_company_2/remove',
+  'router_path' => 'admin/content/node-type/employee/fields/field_company_2/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' => '467',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '468',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/employee/fields/field_company_3/remove',
+  'router_path' => 'admin/content/node-type/employee/fields/field_company_3/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' => '468',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '469',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/page/fields/field_reference/remove',
+  'router_path' => 'admin/content/node-type/page/fields/field_reference/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' => '469',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '470',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/page/fields/field_reference_2/remove',
+  'router_path' => 'admin/content/node-type/page/fields/field_reference_2/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' => '470',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '471',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_string_selectlist/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_string_selectlist/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' => '471',
+  'p2' => '0',
+  'p3' => '0',
+  '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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:12:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:14:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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/contact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'contact_admin_categories',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/contact',
+  'title' => 'Contact form',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Create a system contact form and set up categories for the form to use.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/contact/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"contact_admin_edit";i:1;i:3;}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/contact',
+  'tab_root' => 'admin/build/contact',
+  'title' => 'Add category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/contact/delete/%',
+  'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"contact_admin_delete";i:1;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/contact/delete/%',
+  'title' => 'Delete contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/contact/edit/%',
+  'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:18:"contact_admin_edit";i:1;i:3;i:2;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/contact/edit/%',
+  'title' => 'Edit contact category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/contact/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'contact_admin_categories',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/contact',
+  'tab_root' => 'admin/build/contact',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/contact/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"contact_admin_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/contact',
+  'tab_root' => 'admin/build/contact',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/contact/contact.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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:12:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:14:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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/build/translate',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Translate interface',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Translate the built in interface and optionally other text.',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/delete/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:28:"locale_translate_delete_page";i:1;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/translate/delete/%',
+  'title' => 'Delete string',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/edit/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_translate_edit_form";i:2;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/build/translate/edit/%',
+  'title' => 'Edit string',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/export',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:1:{i:0;s:30:"locale_translate_export_screen";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Export',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '30',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/import',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_translate_import_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Import',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/overview',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Overview',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/build/translate/refresh',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'i18nstrings_admin_refresh_page',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Refresh',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
+))
+->values(array(
+  'path' => 'admin/build/translate/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_seek_screen";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'file' => '',
+))
+->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/aggregator',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/aggregator',
+  'title' => 'Feed aggregator',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/add/category',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/aggregator',
+  'tab_root' => 'admin/content/aggregator',
+  'title' => 'Add category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/add/feed',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/aggregator',
+  'tab_root' => 'admin/content/aggregator',
+  'title' => 'Add feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/edit/category/%',
+  'load_functions' => 'a:1:{i:5;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:5;}',
+  'fit' => '62',
+  'number_parts' => '6',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/aggregator/edit/category/%',
+  'title' => 'Edit category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/edit/feed/%',
+  'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:5;}',
+  'fit' => '62',
+  'number_parts' => '6',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/aggregator/edit/feed/%',
+  'title' => 'Edit feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/content/aggregator',
+  'tab_root' => 'admin/content/aggregator',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/remove/%',
+  'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/aggregator/remove/%',
+  'title' => 'Remove items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"aggregator_admin_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/content/aggregator',
+  'tab_root' => 'admin/content/aggregator',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/aggregator/update/%',
+  'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_refresh_feed',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/aggregator/update/%',
+  'title' => 'Update items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+  'page_callback' => 'book_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/book',
+  'title' => 'Books',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => "Manage your site's book outlines.",
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/%',
+  'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_access',
+  'access_arguments' => 'a:1:{i:0;i:3;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
+  'fit' => '14',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/book/%',
+  'title' => 'Re-order book pages and change titles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+  'page_callback' => 'book_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/content/book',
+  'tab_root' => 'admin/content/book',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/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:19:"book_admin_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/content/book',
+  'tab_root' => 'admin/content/book',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '8',
+  'file' => 'modules/book/book.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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/article/display',
+  'tab_root' => 'admin/content/node-type/article',
+  'title' => 'Print',
+  '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/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/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/company/display',
+  'tab_root' => 'admin/content/node-type/company',
+  'title' => 'Print',
+  '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/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/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/employee/display',
+  'tab_root' => 'admin/content/node-type/employee',
+  'title' => 'Print',
+  '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/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/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_commander',
+  '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:15:"field_commander";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/employee/fields',
+  'tab_root' => 'admin/content/node-type/employee',
+  'title' => 'Commanding Officer',
+  '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_commander/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:15:"field_commander";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/employee/fields/field_commander/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/employee/fields/field_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:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/employee/fields',
+  'tab_root' => 'admin/content/node-type/employee',
+  'title' => 'Company',
+  '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_company/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:13:"field_company";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/employee/fields/field_company/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/employee/fields/field_company_2',
+  '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:15:"field_company_2";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/employee/fields',
+  'tab_root' => 'admin/content/node-type/employee',
+  'title' => 'Company 2',
+  '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_company_2/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:15:"field_company_2";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/employee/fields/field_company_2/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/employee/fields/field_company_3',
+  '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:15:"field_company_3";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/employee/fields',
+  'tab_root' => 'admin/content/node-type/employee',
+  'title' => 'Company 3',
+  '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_company_3/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:15:"field_company_3";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/employee/fields/field_company_3/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/forum/display',
+  'tab_root' => 'admin/content/node-type/forum',
+  'title' => 'Print',
+  '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/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/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/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/page/display',
+  'tab_root' => 'admin/content/node-type/page',
+  'title' => 'Print',
+  '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/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/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/page/fields/field_reference',
+  '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:4:"page";i:2;s:15:"field_reference";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/page/fields',
+  'tab_root' => 'admin/content/node-type/page',
+  'title' => 'Reference',
+  '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/page/fields/field_reference/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:4:"page";i:2;s:15:"field_reference";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/page/fields/field_reference/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/fields/field_reference_2',
+  '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:4:"page";i:2;s:17:"field_reference_2";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/page/fields',
+  'tab_root' => 'admin/content/node-type/page',
+  'title' => 'Reference',
+  '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/page/fields/field_reference_2/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:4:"page";i:2;s:17:"field_reference_2";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/page/fields/field_reference_2/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/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/sponsor/display',
+  'tab_root' => 'admin/content/node-type/sponsor',
+  'title' => 'Print',
+  '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/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/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/print',
+  '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:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/display',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Print',
+  '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/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/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-type/story/fields/field_test',
+  '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:"story";i:2;s:10:"field_test";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Text Field',
+  '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/story/fields/field_test/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:"story";i:2;s:10:"field_test";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test/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/story/fields/field_test_date',
+  '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:"story";i:2;s:15:"field_test_date";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Date Field',
+  '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/story/fields/field_test_date/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:"story";i:2;s:15:"field_test_date";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_date/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/story/fields/field_test_datestamp',
+  '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:"story";i:2;s:20:"field_test_datestamp";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Date Stamp Field',
+  '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/story/fields/field_test_datestamp/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:"story";i:2;s:20:"field_test_datestamp";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_datestamp/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/story/fields/field_test_datetime',
+  '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:"story";i:2;s:19:"field_test_datetime";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Datetime Field',
+  '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/story/fields/field_test_datetime/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:"story";i:2;s:19:"field_test_datetime";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_datetime/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/story/fields/field_test_decimal_radio_buttons',
+  '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:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Decimal Radio Buttons Field',
+  '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/story/fields/field_test_decimal_radio_buttons/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:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/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/story/fields/field_test_email',
+  '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:"story";i:2;s:16:"field_test_email";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Email Field',
+  '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/story/fields/field_test_email/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:"story";i:2;s:16:"field_test_email";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_email/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/story/fields/field_test_exclude_unset',
+  '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:"story";i:2;s:24:"field_test_exclude_unset";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Text Field',
+  '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/story/fields/field_test_exclude_unset/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:"story";i:2;s:24:"field_test_exclude_unset";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_exclude_unset/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/story/fields/field_test_filefield',
+  '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:"story";i:2;s:20:"field_test_filefield";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'File Field',
+  '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/story/fields/field_test_filefield/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:"story";i:2;s:20:"field_test_filefield";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_filefield/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/story/fields/field_test_float_single_checkbox',
+  '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:"story";i:2;s:32:"field_test_float_single_checkbox";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Float Single Checkbox Field',
+  '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/story/fields/field_test_float_single_checkbox/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:"story";i:2;s:32:"field_test_float_single_checkbox";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/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/story/fields/field_test_four',
+  '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:"story";i:2;s:15:"field_test_four";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Float Field',
+  '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/story/fields/field_test_four/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:"story";i:2;s:15:"field_test_four";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_four/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/story/fields/field_test_identical1',
+  '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:"story";i:2;s:21:"field_test_identical1";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Integer Field',
+  '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/story/fields/field_test_identical1/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:"story";i:2;s:21:"field_test_identical1";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_identical1/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/story/fields/field_test_identical2',
+  '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:"story";i:2;s:21:"field_test_identical2";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Integer Field',
+  '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/story/fields/field_test_identical2/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:"story";i:2;s:21:"field_test_identical2";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_identical2/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/story/fields/field_test_imagefield',
+  '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:"story";i:2;s:21:"field_test_imagefield";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Image Field',
+  '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/story/fields/field_test_imagefield/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:"story";i:2;s:21:"field_test_imagefield";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_imagefield/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/story/fields/field_test_integer_selectlist',
+  '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:"story";i:2;s:29:"field_test_integer_selectlist";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Integer Select List Field',
+  '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/story/fields/field_test_integer_selectlist/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:"story";i:2;s:29:"field_test_integer_selectlist";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/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/story/fields/field_test_link',
+  '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:"story";i:2;s:15:"field_test_link";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Link Field',
+  '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/story/fields/field_test_link/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:"story";i:2;s:15:"field_test_link";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_link/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/story/fields/field_test_phone',
+  '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:"story";i:2;s:16:"field_test_phone";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Phone Field',
+  '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/story/fields/field_test_phone/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:"story";i:2;s:16:"field_test_phone";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_phone/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/story/fields/field_test_string_selectlist',
+  '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:"story";i:2;s:28:"field_test_string_selectlist";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'String Select List Field',
+  '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/story/fields/field_test_string_selectlist/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:"story";i:2;s:28:"field_test_string_selectlist";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_string_selectlist/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/story/fields/field_test_text_single_checkbox',
+  '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:"story";i:2;s:31:"field_test_text_single_checkbox";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Text Single Checkbox Field',
+  '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/story/fields/field_test_text_single_checkbox/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:"story";i:2;s:31:"field_test_text_single_checkbox";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/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/story/fields/field_test_text_single_checkbox2',
+  '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:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Text Single Checkbox Field 2',
+  '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/story/fields/field_test_text_single_checkbox2/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:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/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/story/fields/field_test_three',
+  '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:"story";i:2;s:16:"field_test_three";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Decimal Field',
+  '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/story/fields/field_test_three/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:"story";i:2;s:16:"field_test_three";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_three/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/story/fields/field_test_two',
+  '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:"story";i:2;s:14:"field_test_two";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/story/fields',
+  'tab_root' => 'admin/content/node-type/story',
+  'title' => 'Integer Field',
+  '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/story/fields/field_test_two/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:"story";i:2;s:14:"field_test_two";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/story/fields/field_test_two/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/test-event',
+  '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:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event 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:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-event',
+  'title' => 'Migrate test event',
+  '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/test-event/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:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event 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:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-event/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/test-event/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:10:"test_event";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-event',
+  'tab_root' => 'admin/content/node-type/test-event',
+  '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/test-event/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:10:"test_event";i:2;s:5:"basic";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-event/display',
+  'tab_root' => 'admin/content/node-type/test-event',
+  '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/test-event/display/print',
+  '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:10:"test_event";i:2;s:5:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-event/display',
+  'tab_root' => 'admin/content/node-type/test-event',
+  'title' => 'Print',
+  '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/test-event/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:10:"test_event";i:2;s:3:"rss";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-event/display',
+  'tab_root' => 'admin/content/node-type/test-event',
+  '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/test-event/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:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event 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:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-event',
+  'tab_root' => 'admin/content/node-type/test-event',
+  '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/test-event/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:10:"test_event";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-event',
+  'tab_root' => 'admin/content/node-type/test-event',
+  '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/test-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:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test 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:28:\"This is the body field label\";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:9:\"test_page\";}}",
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-page',
+  'title' => 'Migrate test 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/test-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:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test 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:28:\"This is the body field label\";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:9:\"test_page\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:9:"test_page";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-page',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:9:"test_page";i:2;s:5:"basic";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-page/display',
+  'tab_root' => 'admin/content/node-type/test-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/test-page/display/print',
+  '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:9:"test_page";i:2;s:5:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-page/display',
+  'tab_root' => 'admin/content/node-type/test-page',
+  'title' => 'Print',
+  '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/test-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:9:"test_page";i:2;s:3:"rss";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-page/display',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test 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:28:\"This is the body field label\";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:9:\"test_page\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-page',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:9:"test_page";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-page',
+  'tab_root' => 'admin/content/node-type/test-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/test-page/fields/field_test',
+  '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:9:"test_page";i:2;s:10:"field_test";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-page/fields',
+  'tab_root' => 'admin/content/node-type/test-page',
+  'title' => 'Text Field',
+  '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/test-page/fields/field_test/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:9:"test_page";i:2;s:10:"field_test";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-page/fields/field_test/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/test-planet',
+  '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:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";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:\"0\";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:11:\"test_planet\";}}",
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  'title' => 'Migrate test planet',
+  '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/test-planet/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:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";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:\"0\";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:11:\"test_planet\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-planet/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/test-planet/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:11:"test_planet";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-planet',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  '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/test-planet/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:11:"test_planet";i:2;s:5:"basic";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-planet/display',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  '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/test-planet/display/print',
+  '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:11:"test_planet";i:2;s:5:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-planet/display',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  'title' => 'Print',
+  '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/test-planet/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:11:"test_planet";i:2;s:3:"rss";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-planet/display',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  '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/test-planet/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:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";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:\"0\";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:11:\"test_planet\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-planet',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  '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/test-planet/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:11:"test_planet";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-planet',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  '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/test-planet/fields/field_multivalue',
+  '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:11:"test_planet";i:2;s:16:"field_multivalue";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-planet/fields',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  'title' => 'Decimal Field',
+  '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/test-planet/fields/field_multivalue/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:11:"test_planet";i:2;s:16:"field_multivalue";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-planet/fields/field_multivalue/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/test-planet/fields/field_test_text_single_checkbox',
+  '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:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-planet/fields',
+  'tab_root' => 'admin/content/node-type/test-planet',
+  'title' => 'Text Single Checkbox Field',
+  '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/test-planet/fields/field_test_text_single_checkbox/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:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
+  'fit' => '127',
+  'number_parts' => '7',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/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/test-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:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test 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:\"0\";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:10:\"test_story\";}}",
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-story',
+  'title' => 'Migrate test 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/test-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:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test 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:\"0\";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:10:\"test_story\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:10:"test_story";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-story',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:10:"test_story";i:2;s:5:"basic";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-story/display',
+  'tab_root' => 'admin/content/node-type/test-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/test-story/display/print',
+  '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:10:"test_story";i:2;s:5:"print";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-story/display',
+  'tab_root' => 'admin/content/node-type/test-story',
+  'title' => 'Print',
+  '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/test-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:10:"test_story";i:2;s:3:"rss";}',
+  'fit' => '63',
+  'number_parts' => '6',
+  'tab_parent' => 'admin/content/node-type/test-story/display',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test 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:\"0\";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:10:\"test_story\";}}",
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-story',
+  'tab_root' => 'admin/content/node-type/test-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/test-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:10:"test_story";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/node-type/test-story',
+  'tab_root' => 'admin/content/node-type/test-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/%/translation',
+  'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_i18ntaxonomy_translation_tab',
+  'access_arguments' => 'a:1:{i:0;i:3;}',
+  'page_callback' => 'i18ntaxonomy_page_vocabulary',
+  'page_arguments' => 'a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}',
+  'fit' => '29',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/taxonomy/%',
+  'tab_root' => 'admin/content/taxonomy/%',
+  'title' => 'Translation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.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/access/%',
+  'load_functions' => 'a:1:{i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_access_log',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'fit' => '14',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/access/%',
+  'title' => 'Details',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => 'View access log.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/hits',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_recent_hits',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/hits',
+  'title' => 'Recent hits',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'View pages that have recently been visited.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/pages',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_pages',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/pages',
+  'title' => 'Top pages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'View pages that have been hit frequently.',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/referrers',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_referrers',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/referrers',
+  'title' => 'Top referrers',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'View top referrers.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/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:34:"statistics_access_logging_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/settings',
+  'title' => 'Access log settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Control details about what and how your site logs.',
+  'position' => '',
+  'weight' => '3',
+  'file' => 'modules/statistics/statistics.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/reports/visitors',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_visitors',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/visitors',
+  'title' => 'Top visitors',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'View visitors that hit many pages.',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/statistics/statistics.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/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:1:{i:0;s:25:"system_date_time_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/date-time',
+  'tab_root' => 'admin/settings/date-time',
+  'title' => 'Date and time',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  '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/delete/%',
+  'load_functions' => 'a:1:{i:4;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:32:"date_api_delete_format_type_form";i:1;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/date-time/delete/%',
+  'title' => 'Delete date format type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => 'Allow users to delete a configured date format type.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/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' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/date-time',
+  'tab_root' => 'admin/settings/date-time',
+  'title' => 'Formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Allow users to configure date formats',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/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:30:"date_api_add_date_formats_form";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/date-time/formats',
+  'tab_root' => 'admin/settings/date-time',
+  'title' => 'Add format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Allow users to add additional date formats.',
+  'position' => '',
+  'weight' => '3',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/date-time/formats/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:1:{i:0;s:26:"date_api_date_formats_form";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/date-time/formats',
+  'tab_root' => 'admin/settings/date-time',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => 'Allow users to configure date formats',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/date-time/formats/custom',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'date_api_configure_custom_date_formats',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/date-time/formats',
+  'tab_root' => 'admin/settings/date-time',
+  'title' => 'Custom formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Allow users to configure custom date formats.',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/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:27:"date_api_delete_format_form";i:1;i:5;}',
+  'fit' => '62',
+  'number_parts' => '6',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/date-time/formats/delete/%',
+  'title' => 'Delete date format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => 'Allow users to delete a configured date format.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/date/date_api.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/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' => 'date_api_date_time_lookup',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/date-time/formats/lookup',
+  'title' => 'Date and time lookup',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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/email',
+  '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:"email_admin_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/email',
+  'title' => 'CCK Email Contact Form Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Administer flood control settings for email contact forms',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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/event',
+  '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:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/event',
+  'title' => 'Events',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Set up how your site handles events.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/event/overview',
+  '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:"event_admin_overview_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/event/overview',
+  'title' => 'Event overview',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Change how event summary information is displayed.',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/event/timezone',
+  '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:"event_admin_timezone_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/event/timezone',
+  'title' => 'Timezone handling',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Change how timezone information is saved and displayed.',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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/imageapi',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer imageapi";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:17:"imageapi_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/imageapi',
+  'title' => 'ImageAPI',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Configure ImageAPI.',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Languages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Configure languages for content and the user interface.',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:1:{i:0;s:27:"locale_languages_add_screen";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/language',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Add language',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/language',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/configure/language',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/configure',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Language negotiation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/configure/strings',
+  '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:26:"i18nstrings_admin_settings";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/configure',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'String translation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/language/delete/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_languages_delete_form";i:2;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/language/delete/%',
+  'title' => 'Confirm',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/edit/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_languages_edit_form";i:2;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/language/edit/%',
+  'title' => 'Edit language',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/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:1:{i:0;s:19:"i18n_admin_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/language',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Multilingual system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Configure extended options for multilingual content and translations.',
+  'position' => '',
+  'weight' => '10',
+  'file' => 'sites/all/modules/i18n/i18n.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/language/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:1:{i:0;s:19:"i18n_admin_settings";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/i18n',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Multilingual system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => 'Configure extended options for multilingual content and translations.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18n.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/language/overview',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/language',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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/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/settings/variable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'Variables',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Edit and delete site variables.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/edit/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'variable_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'variable_admin_page_edit',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/variable/edit/%',
+  'title' => 'Edit variable',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/group',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'By group',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => 'Variables by group.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/group/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_group',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/variable/group/%',
+  'title' => 'Variables group',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Edit and delete group variables.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/modules',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_modules',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'By module',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Variables by module.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/undefined',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_undefined',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'Undefined',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Unknown variables.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.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/profile',
+  '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:22:"profile_admin_overview";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/user/profile',
+  'title' => 'Profiles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Create customizable fields for your users.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.admin.inc',
+))
+->values(array(
+  'path' => 'admin/user/profile/add',
+  '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:18:"profile_field_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/user/profile/add',
+  'title' => 'Add field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.admin.inc',
+))
+->values(array(
+  'path' => 'admin/user/profile/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'profile_admin_settings_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/user/profile/autocomplete',
+  'title' => 'Profile category autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.admin.inc',
+))
+->values(array(
+  'path' => 'admin/user/profile/delete',
+  '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:20:"profile_field_delete";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/user/profile/delete',
+  'title' => 'Delete field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.admin.inc',
+))
+->values(array(
+  'path' => 'admin/user/profile/edit',
+  '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:18:"profile_field_form";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'admin/user/profile/edit',
+  'title' => 'Edit field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.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' => 'aggregator',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_last',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '1',
+  'number_parts' => '1',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator',
+  'title' => 'Feed aggregator',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_aggregator_has_categories',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'aggregator_page_categories',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/categories',
+  'title' => 'Categories',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_category',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '6',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => '',
+  'title_callback' => '_aggregator_category_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/categorize',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"aggregator_page_category";i:1;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'Categorize',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/configure',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/view',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_category',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/opml',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_opml',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/opml',
+  'title' => 'OPML feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/rss',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_rss',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/rss',
+  'title' => 'RSS feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_sources',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/sources',
+  'title' => 'Sources',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_source',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '6',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/categorize',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"aggregator_page_source";i:1;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'Categorize',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/configure',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/view',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_source',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '13',
+  'number_parts' => '4',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'file' => 'modules/aggregator/aggregator.pages.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' => 'book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'book_render',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '1',
+  'number_parts' => '1',
+  'tab_parent' => '',
+  'tab_root' => 'book',
+  'title' => 'Books',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '20',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.pages.inc',
+))
+->values(array(
+  'path' => 'book/export/%/%',
+  'load_functions' => 'a:2:{i:2;N;i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
+  'page_callback' => 'book_export',
+  'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
+  'fit' => '12',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'book/export/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.pages.inc',
+))
+->values(array(
+  'path' => 'book/js/form',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'book_form_update',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'book/js/form',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.pages.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' => 'contact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
+  'page_callback' => 'contact_site_page',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '1',
+  'number_parts' => '1',
+  'tab_parent' => '',
+  'tab_root' => 'contact',
+  'title' => 'Contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '20',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/contact/contact.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' => 'core/tests/fixtures/files/imagecache',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_imagecache_menu_access_public_files',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'imagecache_cache',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'core/tests/fixtures/files/imagecache',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'email/%/%',
+  'load_functions' => 'a:2:{i:1;s:9:"node_load";i:2;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+  'page_callback' => 'email_mail_page',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;i:2;}',
+  'fit' => '4',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'email/%/%',
+  'title' => 'Email Contact Form',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'event',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_page',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '1',
+  'number_parts' => '1',
+  'tab_parent' => '',
+  'tab_root' => 'event',
+  'title' => 'Events',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '20',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/event/ical.inc',
+))
+->values(array(
+  'path' => 'event/dst',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_dst',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'event/dst',
+  'title' => 'Event dst view',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'event/feed',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_feed',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'event/feed',
+  'title' => 'Event rss feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'event/ical',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_ical',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'event/ical',
+  'title' => 'Event ical feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/event/ical.inc',
+))
+->values(array(
+  'path' => 'event/term',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_term',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'event/term',
+  'title' => 'Filter by taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'event/type',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'event_type',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'event/type',
+  'title' => 'Filter by content type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'filefield/ahah/%/%/%',
+  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'filefield_edit_access',
+  'access_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
+  'page_callback' => 'filefield_js',
+  'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+  'fit' => '24',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'filefield/ahah/%/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'filefield/progress',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'filefield_progress',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'filefield/progress',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  '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:{}',
+  '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' => 'i18n/node/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'i18n_node_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'i18n/node/autocomplete',
+  'title' => 'Node title autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18n.pages.inc',
+))
+->values(array(
+  'path' => 'i18nstrings/save',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
+  'page_callback' => 'i18nstrings_save_string',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'i18nstrings/save',
+  'title' => 'Save string',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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/%/ical',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'event_ical_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'event_node_ical',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '5',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/ical',
+  'title' => 'Event ical',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/event/ical.inc',
+))
+->values(array(
+  'path' => 'node/%/outline',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'book_outline',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'fit' => '5',
+  'number_parts' => '3',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Outline',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/book/book.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/outline/remove',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_remove_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
+  'fit' => '11',
+  'number_parts' => '4',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/outline/remove',
+  'title' => 'Remove from outline',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/book/book.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/%/track',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_node_tracker',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '5',
+  'number_parts' => '3',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Track',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/statistics/statistics.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/translate',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_translation_tab_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'i18n_translation_node_overview',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'fit' => '5',
+  'number_parts' => '3',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Translate',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'sites/all/modules/i18n/i18n.pages.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;}',
+  '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' => 'i18ncontent_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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:article:name";i:1;s:7:"Article";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:company:name";i:1;s:7:"Company";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:27:"nodetype:type:employee:name";i:1;s:8:"Employee";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:forum:name";i:1;s:11:"Forum topic";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:23:"nodetype:type:page:name";i:1;s:4:"Page";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:sponsor:name";i:1;s:7:"Sponsor";}',
+  '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' => 'i18ncontent_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' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:story:name";i:1;s:5:"Story";}',
+  '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' => 'node/add/test-event',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
+  'page_callback' => 'i18ncontent_node_add',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/test-event',
+  'title' => 'Migrate test event',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-event:name";i:1;s:18:"Migrate test event";}',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'test event description here',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/test-page',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
+  'page_callback' => 'i18ncontent_node_add',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/test-page',
+  'title' => 'Migrate test page',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:28:"nodetype:type:test-page:name";i:1;s:17:"Migrate test page";}',
+  '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/test-planet',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
+  'page_callback' => 'i18ncontent_node_add',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/test-planet',
+  'title' => 'Migrate test planet',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:30:"nodetype:type:test-planet:name";i:1;s:19:"Migrate test planet";}',
+  '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' => 'node/add/test-story',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
+  'page_callback' => 'i18ncontent_node_add',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/test-story',
+  'title' => 'Migrate test story',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-story:name";i:1;s:18:"Migrate test story";}',
+  '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' => 'nodereference/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'nodereference_autocomplete_access',
+  'access_arguments' => 'a:1:{i:0;i:2;}',
+  'page_callback' => 'nodereference_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'nodereference/autocomplete',
+  'title' => 'Nodereference autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'profile',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+  'page_callback' => 'profile_browse',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '1',
+  'number_parts' => '1',
+  'tab_parent' => '',
+  'tab_root' => 'profile',
+  'title' => 'User list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '20',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.pages.inc',
+))
+->values(array(
+  'path' => 'profile/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+  'page_callback' => 'profile_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'profile/autocomplete',
+  'title' => 'Profile autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/profile/profile.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' => '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' => 'system/files/imagecache',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'imagecache_cache_private',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'system/files/imagecache',
+  'title' => '',
+  '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' => 'i18ntaxonomy_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' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.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' => 'i18ntaxonomy_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' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.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/%/contact',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_contact_user_tab_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'contact_user_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'fit' => '5',
+  'number_parts' => '3',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/contact/contact.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/%/edit/Administrative data',
+  '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' => 'profile_category_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:19:"Administrative data";}',
+  'page_callback' => 'user_edit',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+  'fit' => '11',
+  'number_parts' => '4',
+  'tab_parent' => 'user/%/edit',
+  'tab_root' => 'user/%',
+  'title' => '',
+  'title_callback' => 'i18nprofile_translate_category',
+  'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit/Communication preferences',
+  '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' => 'profile_category_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:25:"Communication preferences";}',
+  'page_callback' => 'user_edit',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+  'fit' => '11',
+  'number_parts' => '4',
+  'tab_parent' => 'user/%/edit',
+  'tab_root' => 'user/%',
+  'title' => '',
+  'title_callback' => 'i18nprofile_translate_category',
+  'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit/Personal information',
+  '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' => 'profile_category_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:20:"Personal information";}',
+  'page_callback' => 'user_edit',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+  'fit' => '11',
+  'number_parts' => '4',
+  'tab_parent' => 'user/%/edit',
+  'tab_root' => 'user/%',
+  'title' => '',
+  'title_callback' => 'i18nprofile_translate_category',
+  'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/track/navigation',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_user_tracker',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '11',
+  'number_parts' => '4',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Track page visits',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'file' => 'modules/statistics/statistics.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',
+))
+->values(array(
+  'path' => 'user/timezone',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_timezone',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'user/timezone',
+  'title' => 'User timezone',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->values(array(
+  'path' => 'userreference/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'userreference_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'userreference/autocomplete',
+  'title' => 'Userreference autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
+->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' => '1',
+  'vid' => '2001',
+  'type' => 'story',
+  'language' => '',
+  'title' => 'Test title rev 3',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1390095702',
+  'changed' => '1420861423',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'type' => 'story',
+  'language' => '',
+  'title' => 'Test title rev 3',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271197',
+  'changed' => '1420718386',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '4',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Test page title rev 4',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '6',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Node 4',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '7',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Node 5',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '8',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Node 6',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '9',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Node 7',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '10',
+  'type' => 'test_planet',
+  'language' => '',
+  'title' => 'Node 8',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1388271527',
+  'changed' => '1390096401',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '12',
+  'type' => 'story',
+  'language' => '',
+  'title' => 'Once upon a time',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1444671588',
+  'changed' => '1444671588',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '13',
+  'type' => 'page',
+  'language' => 'en',
+  'title' => 'The Real McCoy',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1444238800',
+  'changed' => '1444238808',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '10',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '14',
+  'type' => 'page',
+  'language' => 'fr',
+  'title' => 'Le Vrai McCoy',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1444239050',
+  'changed' => '1444239050',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '10',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '15',
+  'type' => 'page',
+  'language' => 'zu',
+  'title' => 'Abantu zulu',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1444238800',
+  'changed' => '1444238808',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '12',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '13',
+  'vid' => '16',
+  'type' => 'page',
+  'language' => 'en',
+  'title' => 'The Zulu People',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1444239050',
+  'changed' => '1444239050',
+  'comment' => '0',
+  'promote' => '0',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '12',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '14',
+  'vid' => '17',
+  'type' => 'company',
+  'language' => '',
+  'title' => 'United Federation of Planets',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1493066668',
+  'changed' => '1493066668',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '15',
+  'vid' => '18',
+  'type' => 'company',
+  'language' => '',
+  'title' => 'Klingon Empire',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1493066677',
+  'changed' => '1493066677',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '16',
+  'vid' => '19',
+  'type' => 'company',
+  'language' => '',
+  'title' => 'Romulan Empire',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1493066684',
+  'changed' => '1493066684',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '17',
+  'vid' => '20',
+  'type' => 'company',
+  'language' => '',
+  'title' => 'Ferengi Commerce Authority',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1493066693',
+  'changed' => '1493066693',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '21',
+  'type' => 'employee',
+  'language' => '',
+  'title' => 'Ambassador Sarek',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1493066711',
+  'changed' => '1494966544',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->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' => 'page',
+  'language' => 'fr',
+  'title' => 'Le peuple zoulou',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1520613038',
+  'changed' => '1520613305',
+  'comment' => '0',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '12',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '2002',
+  'type' => 'employee',
+  'language' => 'en',
+  'title' => 'John Smith - EN',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1534014650',
+  'changed' => '1534014650',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '21',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '2003',
+  'type' => 'employee',
+  'language' => 'fr',
+  'title' => 'John Smith - FR',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1534014687',
+  'changed' => '1534014687',
+  'comment' => '2',
+  'promote' => '1',
+  'moderate' => '0',
+  'sticky' => '0',
+  'tnid' => '21',
+  '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' => '1',
+  'last_comment_timestamp' => '1388271197',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'last_comment_timestamp' => '1389002813',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'last_comment_timestamp' => '1444238800',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'last_comment_timestamp' => '1444239050',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '14',
+  'last_comment_timestamp' => '1493066668',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '15',
+  'last_comment_timestamp' => '1493066677',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '16',
+  'last_comment_timestamp' => '1493066684',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '17',
+  'last_comment_timestamp' => '1493066693',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '18',
+  'last_comment_timestamp' => '1493066711',
+  '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' => '21',
+  'last_comment_timestamp' => '1534014729',
+  'last_comment_name' => '',
+  'last_comment_uid' => '1',
+  'comment_count' => '1',
+))
+->values(array(
+  'nid' => '22',
+  'last_comment_timestamp' => '1534014763',
+  'last_comment_name' => '',
+  'last_comment_uid' => '1',
+  'comment_count' => '1',
+))
+->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' => '1',
+  'totalcount' => '2',
+  'daycount' => '0',
+  'timestamp' => '1421727536',
+))
+->values(array(
+  'nid' => '2',
+  'totalcount' => '1',
+  'daycount' => '0',
+  'timestamp' => '1471428059',
+))
+->values(array(
+  'nid' => '3',
+  'totalcount' => '1',
+  'daycount' => '0',
+  'timestamp' => '1471428153',
+))
+->values(array(
+  'nid' => '4',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1478755275',
+))
+->values(array(
+  'nid' => '5',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1478755314',
+))
+->values(array(
+  'nid' => '10',
+  'totalcount' => '5',
+  'daycount' => '1',
+  'timestamp' => '1521137459',
+))
+->values(array(
+  'nid' => '11',
+  'totalcount' => '3',
+  'daycount' => '1',
+  'timestamp' => '1521137463',
+))
+->values(array(
+  'nid' => '12',
+  'totalcount' => '3',
+  'daycount' => '0',
+  'timestamp' => '1521137469',
+))
+->values(array(
+  'nid' => '13',
+  'totalcount' => '2',
+  'daycount' => '1',
+  'timestamp' => '1521137470',
+))
+->values(array(
+  'nid' => '14',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1493066668',
+))
+->values(array(
+  'nid' => '15',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1493066677',
+))
+->values(array(
+  'nid' => '16',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1493066685',
+))
+->values(array(
+  'nid' => '17',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1493066693',
+))
+->values(array(
+  'nid' => '18',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1493066711',
+))
+->values(array(
+  'nid' => '19',
+  'totalcount' => '4',
+  'daycount' => '4',
+  'timestamp' => '1501955803',
+))
+->values(array(
+  'nid' => '21',
+  'totalcount' => '3',
+  'daycount' => '3',
+  'timestamp' => '1534014729',
+))
+->values(array(
+  'nid' => '22',
+  'totalcount' => '3',
+  'daycount' => '3',
+  'timestamp' => '1534014763',
+))
+->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' => '1',
+  'vid' => '1',
+  'uid' => '1',
+  'title' => 'Test title',
+  'body' => 'test',
+  'teaser' => 'test',
+  'log' => '',
+  'timestamp' => '1390095702',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'uid' => '1',
+  'title' => 'Test title rev 3',
+  'body' => 'test rev 3',
+  'teaser' => 'test rev 3',
+  'log' => '',
+  'timestamp' => '1420718386',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '4',
+  'uid' => '1',
+  'title' => 'Test page title rev 4',
+  'body' => 'test page body rev 4',
+  'teaser' => 'test page teaser rev 4',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '0',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '5',
+  'uid' => '1',
+  'title' => 'Test title rev 2',
+  'body' => 'body test rev 2',
+  'teaser' => 'teaser test rev 2',
+  'log' => 'modified rev 2',
+  'timestamp' => '1390095703',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '6',
+  'uid' => '1',
+  'title' => 'Node 4',
+  'body' => 'Node 4 body',
+  'teaser' => 'test for node 4',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '7',
+  'uid' => '1',
+  'title' => 'Node 5',
+  'body' => 'Node 5 body',
+  'teaser' => 'test for node 5',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '8',
+  'uid' => '1',
+  'title' => 'Node 6',
+  'body' => 'Node 6 body',
+  'teaser' => 'test for node 6',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '9',
+  'uid' => '1',
+  'title' => 'Node 7',
+  'body' => 'Node 7 body',
+  'teaser' => 'test for node 7',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '10',
+  'uid' => '1',
+  'title' => 'Node 8',
+  'body' => 'Node 8 body',
+  'teaser' => 'test for node 8',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '11',
+  'uid' => '1',
+  'title' => 'Node 9',
+  'body' => 'Node 9 body',
+  'teaser' => 'test for node 9',
+  'log' => '',
+  'timestamp' => '1390095701',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '12',
+  'uid' => '1',
+  'title' => 'Once upon a time',
+  'body' => 'Come on kid, go to sleep.',
+  'teaser' => 'Come on kid, go to sleep.',
+  'log' => '',
+  'timestamp' => '1444671588',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '13',
+  'uid' => '1',
+  'title' => 'The Real McCoy',
+  'body' => "In the original, Queen's English.",
+  'teaser' => "In the original, Queen's English.",
+  'log' => '',
+  'timestamp' => '1444238808',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '14',
+  'uid' => '1',
+  'title' => 'Le Vrai McCoy',
+  'body' => 'Ooh là là!',
+  'teaser' => 'Ooh là là!',
+  'log' => '',
+  'timestamp' => '1444239050',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '15',
+  'uid' => '1',
+  'title' => 'Abantu zulu',
+  'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'log' => '',
+  'timestamp' => '1444238808',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '13',
+  'vid' => '16',
+  'uid' => '1',
+  'title' => 'The Zulu People',
+  'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'log' => '',
+  'timestamp' => '1444239050',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '14',
+  'vid' => '17',
+  'uid' => '1',
+  'title' => 'United Federation of Planets',
+  'body' => '',
+  'teaser' => '',
+  'log' => '',
+  'timestamp' => '1493066668',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '15',
+  'vid' => '18',
+  'uid' => '1',
+  'title' => 'Klingon Empire',
+  'body' => '',
+  'teaser' => '',
+  'log' => '',
+  'timestamp' => '1493066677',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '16',
+  'vid' => '19',
+  'uid' => '1',
+  'title' => 'Romulan Empire',
+  'body' => '',
+  'teaser' => '',
+  'log' => '',
+  'timestamp' => '1493066684',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '17',
+  'vid' => '20',
+  'uid' => '1',
+  'title' => 'Ferengi Commerce Authority',
+  'body' => '',
+  'teaser' => '',
+  'log' => '',
+  'timestamp' => '1493066693',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '21',
+  'uid' => '1',
+  'title' => 'Ambassador Sarek',
+  'body' => "Yeah, I like animals better than people sometimes... Especially dogs. Dogs are the best. Every time you come home, they act like they haven't seen you in a year. And the good thing about dogs... is they got different dogs for different people. Like pit bulls. The dog of dogs. Pit bull can be the right man's best friend... or the wrong man's worst enemy. You going to give me a dog for a pet, give me a pit bull. Give me... Raoul. Right, Omar? Give me Raoul.",
+  'teaser' => "Yeah, I like animals better than people sometimes... Especially dogs. Dogs are the best. Every time you come home, they act like they haven't seen you in a year. And the good thing about dogs... is they got different dogs for different people. Like pit bulls. The dog of dogs. Pit bull can be the right man's best friend... or the wrong man's worst enemy. You going to give me a dog for a pet, give me a pit bull. Give me... Raoul. Right, Omar?",
+  'log' => '',
+  'timestamp' => '1494966544',
+  'format' => '1',
+))
+->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' => 'Le peuple zoulou',
+  'body' => 'Le peuple zoulou.',
+  'teaser' => 'Le peuple zoulou.',
+  'log' => '',
+  'timestamp' => '1520613305',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'uid' => '2',
+  'title' => 'Test title rev 3',
+  'body' => 'body test rev 3',
+  'teaser' => 'teaser test rev 3',
+  'log' => 'modified rev 3',
+  'timestamp' => '1420861423',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '2002',
+  'uid' => '1',
+  'title' => 'John Smith - EN',
+  'body' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
+  'teaser' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
+  'log' => '',
+  'timestamp' => '1534014650',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '2003',
+  'uid' => '1',
+  'title' => 'John Smith - FR',
+  'body' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
+  'teaser' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
+  'log' => '',
+  'timestamp' => '1534014687',
+  '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' => 'event',
+  'name' => 'Event',
+  'module' => 'node',
+  'description' => 'Events have a start date and an optional end date as well as a teaser and a body. They can be extended by other modules, too.',
+  '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' => 'event',
+))
+->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',
+))
+->values(array(
+  'type' => 'test_event',
+  'name' => 'Migrate test event',
+  'module' => 'node',
+  'description' => 'test event description here',
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Event Name',
+  'has_body' => '1',
+  'body_label' => 'Body',
+  'min_word_count' => '0',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'orig_type' => 'event',
+))
+->values(array(
+  'type' => 'test_page',
+  'name' => 'Migrate test 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' => 'This is the body field label',
+  'min_word_count' => '0',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'orig_type' => 'test_page',
+))
+->values(array(
+  'type' => 'test_planet',
+  'name' => 'Migrate test planet',
+  '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' => '0',
+  'body_label' => 'Body',
+  'min_word_count' => '0',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'orig_type' => 'test_planet',
+))
+->values(array(
+  'type' => 'test_story',
+  'name' => 'Migrate test 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' => '0',
+  'body_label' => 'Body',
+  'min_word_count' => '0',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'orig_type' => 'test_story',
+))
+->values(array(
+  'type' => 'a_thirty_two_character_type_name',
+  'name' => 'Test long name',
+  'module' => 'node',
+  'description' => '',
+  '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' => '',
+))
+->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',
+))
+->values(array(
+  'pid' => '3',
+  'rid' => '3',
+  'perm' => 'migrate test role 1 test permission',
+  'tid' => '0',
+))
+->values(array(
+  'pid' => '4',
+  'rid' => '4',
+  'perm' => 'migrate test role 2 test permission, use PHP for settings, administer contact forms, skip comment approval, edit own blog content, edit any blog content, delete own blog content, delete any blog content, create forum content, delete any forum content, delete own forum content, edit any forum content, edit own forum content, administer nodes',
+  'tid' => '0',
+))
+->execute();
+$connection->schema()->createTable('profile_fields', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'explanation' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'category' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'page' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '128',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'required' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'register' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'visibility' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'autocomplete' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'options' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('profile_fields')
+->fields(array(
+  'fid',
+  'title',
+  'name',
+  'explanation',
+  'category',
+  'page',
+  'type',
+  'weight',
+  'required',
+  'register',
+  'visibility',
+  'autocomplete',
+  'options',
+))
+->values(array(
+  'fid' => '8',
+  'title' => 'Favorite color',
+  'name' => 'profile_color',
+  'explanation' => 'List your favorite color',
+  'category' => 'Personal information',
+  'page' => 'Peole whose favorite color is %value',
+  'type' => 'textfield',
+  'weight' => '-10',
+  'required' => '0',
+  'register' => '1',
+  'visibility' => '2',
+  'autocomplete' => '1',
+  'options' => '',
+))
+->values(array(
+  'fid' => '9',
+  'title' => 'Biography',
+  'name' => 'profile_biography',
+  'explanation' => 'Tell people a little bit about yourself',
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'textarea',
+  'weight' => '-8',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '2',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '10',
+  'title' => 'Sell your email address?',
+  'name' => 'profile_sell_Address',
+  'explanation' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
+  'category' => 'Communication preferences',
+  'page' => 'People who want us to sell their address',
+  'type' => 'checkbox',
+  'weight' => '-10',
+  'required' => '0',
+  'register' => '1',
+  'visibility' => '1',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '11',
+  'title' => 'Sales Category',
+  'name' => 'profile_sold_to',
+  'explanation' => "Select the sales categories to which this user's address was sold.",
+  'category' => 'Administrative data',
+  'page' => 'People whose address was sold to %value',
+  'type' => 'selection',
+  'weight' => '-10',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '4',
+  'autocomplete' => '0',
+  'options' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
+))
+->values(array(
+  'fid' => '12',
+  'title' => 'Favorite bands',
+  'name' => 'profile_bands',
+  'explanation' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'list',
+  'weight' => '-6',
+  'required' => '0',
+  'register' => '1',
+  'visibility' => '3',
+  'autocomplete' => '1',
+  'options' => '',
+))
+->values(array(
+  'fid' => '13',
+  'title' => 'Blog',
+  'name' => 'profile_blog',
+  'explanation' => 'Paste the full URL, including http://, of your personal blog.',
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'url',
+  'weight' => '3',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '3',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '14',
+  'title' => 'Birthdate',
+  'name' => 'profile_birthdate',
+  'explanation' => "Enter your birth date and we'll send you a coupon.",
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'date',
+  'weight' => '4',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '2',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '15',
+  'title' => 'I really, really, really love migrations',
+  'name' => 'profile_really_really_love_migrations',
+  'explanation' => 'If you check this box, you love migrations.',
+  'category' => 'Personal information',
+  'page' => 'People who love migrations',
+  'type' => 'checkbox',
+  'weight' => '-15',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '2',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '16',
+  'title' => 'I really, really, really love migrating',
+  'name' => 'profile_really_really_love_migrating',
+  'explanation' => '',
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'checkbox',
+  'weight' => '0',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '2',
+  'autocomplete' => '0',
+  'options' => '',
+))
+->values(array(
+  'fid' => '17',
+  'title' => 'Number of trees',
+  'name' => 'profile_count_trees',
+  'explanation' => '',
+  'category' => 'Personal information',
+  'page' => '',
+  'type' => 'selection',
+  'weight' => '0',
+  'required' => '0',
+  'register' => '0',
+  'visibility' => '2',
+  'autocomplete' => '0',
+  'options' => "10\r\n20\r\n50\r\n100\r\n1000",
+))
+->execute();
+$connection->schema()->createTable('profile_values', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+    'uid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('profile_values')
+->fields(array(
+  'fid',
+  'uid',
+  'value',
+))
+->values(array(
+  'fid' => '8',
+  'uid' => '2',
+  'value' => 'red',
+))
+->values(array(
+  'fid' => '8',
+  'uid' => '8',
+  'value' => 'brown',
+))
+->values(array(
+  'fid' => '8',
+  'uid' => '15',
+  'value' => 'orange',
+))
+->values(array(
+  'fid' => '8',
+  'uid' => '16',
+  'value' => 'blue',
+))
+->values(array(
+  'fid' => '8',
+  'uid' => '17',
+  'value' => 'yellow',
+))
+->values(array(
+  'fid' => '9',
+  'uid' => '2',
+  'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla sapien, congue nec risus ut, adipiscing aliquet felis. Maecenas quis justo vel nulla varius euismod. Quisque metus metus, cursus sit amet sem non, bibendum vehicula elit. Cras dui nisl, eleifend at iaculis vitae, lacinia ut felis. Nullam aliquam ligula volutpat nulla consectetur accumsan. Maecenas tincidunt molestie diam, a accumsan enim fringilla sit amet. Morbi a tincidunt tellus. Donec imperdiet scelerisque porta. Sed quis sem bibendum eros congue sodales. Vivamus vel fermentum est, at rutrum orci. Nunc consectetur purus ut dolor pulvinar, ut volutpat felis congue. Cras tincidunt odio sed neque sollicitudin, vehicula tempor metus scelerisque.',
+))
+->values(array(
+  'fid' => '9',
+  'uid' => '8',
+  'value' => 'Nunc condimentum ligula felis, eget lacinia purus accumsan at. Pellentesque eu lobortis felis. Duis at accumsan nisl, vel pulvinar risus. Nullam venenatis, tellus non eleifend hendrerit, augue nulla rhoncus leo, eget convallis enim sem ut velit. Mauris tincidunt enim ut eros volutpat dapibus. Curabitur augue libero, imperdiet eget orci sed, malesuada dapibus tellus. Nam lacus sapien, convallis vitae quam vel, bibendum commodo odio.',
+))
+->values(array(
+  'fid' => '9',
+  'uid' => '15',
+  'value' => 'Donec a diam volutpat augue fringilla fringilla. Mauris ultricies turpis ut lacus tempus, vitae pharetra lacus mattis. Nulla semper dui euismod sem bibendum, in eleifend nisi malesuada. Vivamus orci mauris, volutpat vitae enim ac, aliquam tempus lectus.',
+))
+->values(array(
+  'fid' => '9',
+  'uid' => '16',
+  'value' => 'Pellentesque sit amet sem et purus pretium consectetuer.',
+))
+->values(array(
+  'fid' => '9',
+  'uid' => '17',
+  'value' => 'The quick brown fox jumped over the lazy dog.',
+))
+->values(array(
+  'fid' => '10',
+  'uid' => '2',
+  'value' => '1',
+))
+->values(array(
+  'fid' => '10',
+  'uid' => '8',
+  'value' => '0',
+))
+->values(array(
+  'fid' => '10',
+  'uid' => '15',
+  'value' => '1',
+))
+->values(array(
+  'fid' => '10',
+  'uid' => '16',
+  'value' => '0',
+))
+->values(array(
+  'fid' => '10',
+  'uid' => '17',
+  'value' => '0',
+))
+->values(array(
+  'fid' => '11',
+  'uid' => '2',
+  'value' => 'Back\slash',
+))
+->values(array(
+  'fid' => '11',
+  'uid' => '8',
+  'value' => 'Forward/slash',
+))
+->values(array(
+  'fid' => '11',
+  'uid' => '15',
+  'value' => 'Dot.in.the.middle',
+))
+->values(array(
+  'fid' => '11',
+  'uid' => '16',
+  'value' => 'Faithful servant',
+))
+->values(array(
+  'fid' => '11',
+  'uid' => '17',
+  'value' => 'Anonymous donor',
+))
+->values(array(
+  'fid' => '12',
+  'uid' => '2',
+  'value' => "AC/DC\n,,Eagles\r\nElton John,Lemonheads\r\n\r\nRolling Stones\rQueen\nThe White Stripes",
+))
+->values(array(
+  'fid' => '12',
+  'uid' => '8',
+  'value' => "Deep Purple\nWho\nThe Beatles",
+))
+->values(array(
+  'fid' => '12',
+  'uid' => '15',
+  'value' => "ABBA\nBoney M",
+))
+->values(array(
+  'fid' => '12',
+  'uid' => '16',
+  'value' => "Van Halen\nDave M",
+))
+->values(array(
+  'fid' => '12',
+  'uid' => '17',
+  'value' => "Toto\nJohn Denver",
+))
+->values(array(
+  'fid' => '13',
+  'uid' => '2',
+  'value' => 'http://example.com/blog',
+))
+->values(array(
+  'fid' => '13',
+  'uid' => '8',
+  'value' => 'http://blog.example.com',
+))
+->values(array(
+  'fid' => '13',
+  'uid' => '15',
+  'value' => 'http://example.com/journal',
+))
+->values(array(
+  'fid' => '13',
+  'uid' => '16',
+  'value' => 'http://example.com/monkeys',
+))
+->values(array(
+  'fid' => '13',
+  'uid' => '17',
+  'value' => 'http://example.com/penguins',
+))
+->values(array(
+  'fid' => '14',
+  'uid' => '2',
+  'value' => 'a:3:{s:5:"month";s:1:"6";s:3:"day";s:1:"2";s:4:"year";s:4:"1974";}',
+))
+->values(array(
+  'fid' => '14',
+  'uid' => '8',
+  'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:1:"9";s:4:"year";s:4:"1980";}',
+))
+->values(array(
+  'fid' => '14',
+  'uid' => '15',
+  'value' => 'a:3:{s:5:"month";s:2:"11";s:3:"day";s:2:"25";s:4:"year";s:4:"1982";}',
+))
+->values(array(
+  'fid' => '14',
+  'uid' => '16',
+  'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:2:"23";s:4:"year";s:4:"1939";}',
+))
+->values(array(
+  'fid' => '14',
+  'uid' => '17',
+  'value' => 'a:3:{s:5:"month";s:2:"12";s:3:"day";s:2:"18";s:4:"year";s:4:"1942";}',
+))
+->values(array(
+  'fid' => '15',
+  'uid' => '2',
+  'value' => '1',
+))
+->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',
+))
+->values(array(
+  'rid' => '3',
+  'name' => 'migrate test role 1',
+))
+->values(array(
+  'rid' => '4',
+  'name' => 'migrate test role 2',
+))
+->values(array(
+  'rid' => '5',
+  'name' => 'migrate test role 3 that is longer than thirty two characters',
+))
+->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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6000',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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: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:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6007',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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: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:"6.38";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  '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:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '1',
+  'schema_version' => '6000',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  '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:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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' => '6000',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";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/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:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:20:"6.x-3.0-alpha4+0-dev";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1435195093";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  '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: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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6000',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  '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: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:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}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:12:{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:7:"version";s:20:"6.x-3.0-alpha4+0-dev";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1435195093";s:10:"dependents";a:0:{}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_locale/date_locale.module',
+  'name' => 'date_locale',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:11:"Date Locale";s:11:"description";s:124:"Allows the site admin to configure multiple formats for date/time display to tailor dates for a specific locale or audience.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:6:"locale";}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_php4/date_php4.module',
+  'name' => 'date_php4',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:9:"Date PHP4";s:11:"description";s:134:"Emulate PHP 5.2 date functions in PHP 4.x, PHP 5.0, and PHP 5.1. Required when using the Date API with PHP versions less than PHP 5.2.";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/date/date_popup/date_popup.module',
+  'name' => 'date_popup',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{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:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;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_repeat/date_repeat.module',
+  'name' => 'date_repeat',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '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:12:"dependencies";a:1:{i:0;s:8:"date_api";}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_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/date/date_tools/date_tools.module',
+  'name' => 'date_tools',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:10:"Date Tools";s:11:"description";s:52:"Tools to import and auto-create dates and calendars.";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:4:"date";}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/ddblock/ddblock.module',
+  'name' => 'ddblock',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:7:{s:4:"name";s:21:"Dynamic display block";s:11:"description";s:36:"Displays dynamic content in a block.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:13:"jquery_update";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/devel/devel.module',
+  'name' => 'devel',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:5:"Devel";s:11:"description";s:52:"Various blocks, pages, and functions for developers.";s:7:"package";s:11:"Development";s:12:"dependencies";a:1:{i:0;s:4:"menu";}s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/devel/devel_generate.module',
+  'name' => 'devel_generate',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:14:"Devel generate";s:11:"description";s:48:"Generate dummy users, nodes, and taxonomy terms.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/devel/devel_node_access.module',
+  'name' => 'devel_node_access',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:17:"Devel node access";s:11:"description";s:67:"Developer block and page illustrating relevant node_access records.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}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/contrib/calendarsignup/calendarsignup.module',
+  'name' => 'calendarsignup',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:15:"Calendar Signup";s:11:"description";s:44:"Add signup forms in an event.module calendar";s:7:"package";s:5:"Event";s:12:"dependencies";a:2:{i:0;s:5:"event";i:1;s:6:"signup";}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:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/event/contrib/datepicker/datepicker.module',
+  'name' => 'datepicker',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:11:"Date Picker";s:11:"description";s:40:"Add a date picker to event module forms.";s:7:"package";s:5:"Event";s:12:"dependencies";a:1:{i:0;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: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/filefield/filefield_meta/filefield_meta.module',
+  'name' => 'filefield_meta',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:14:"FileField Meta";s:11:"description";s:48:"Add metadata gathering and storage to FileField.";s:12:"dependencies";a:2:{i:0;s:9:"filefield";i:1;s:6:"getid3";}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' => '1',
+  'throttle' => '0',
+  'bootstrap' => '1',
+  'schema_version' => '9',
+  'weight' => '10',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
+  'name' => 'i18nblocks',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
+  'name' => 'i18ncck',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
+  'name' => 'i18ncontent',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
+  'name' => 'i18nmenu',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  '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:10:"i18nblocks";i:3;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
+  'name' => 'i18nprofile',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '2',
+  'weight' => '0',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
+  'name' => 'i18nstrings',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6006',
+  'weight' => '10',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
+  'name' => 'i18nsync',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '100',
+  'info' => 'a:10:{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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
+  'name' => 'i18ntaxonomy',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  '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: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:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nviews/i18nviews.module',
+  'name' => 'i18nviews',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:17:"Views translation";s:11:"description";s:80:"Translation of views strings and content selection for views. Requires Views 3.x";s:12:"dependencies";a:3:{i:0;s:5:"views";i:1;s:11:"i18nstrings";i:2;s:12:"i18ntaxonomy";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}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:10:{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:5:"Devel";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}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/imageapi/imageapi_gd.module',
+  'name' => 'imageapi_gd',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:10:{s:4:\"name\";s:12:\"ImageAPI GD2\";s:11:\"description\";s:49:\"Uses PHP's built-in GD2 image processing support.\";s:7:\"package\";s:10:\"ImageCache\";s:4:\"core\";s:3:\"6.x\";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:{}s:3:\"php\";s:5:\"4.3.5\";}",
+))
+->values(array(
+  'filename' => 'sites/all/modules/imageapi/imageapi_imagemagick.module',
+  'name' => 'imageapi_imagemagick',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:20:"ImageAPI ImageMagick";s:11:"description";s:33:"Command Line ImageMagick support.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";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:{}s:3:"php";s:5:"4.3.5";}',
+))
+->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/imagecache/imagecache_ui.module',
+  'name' => 'imagecache_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:13:"ImageCache UI";s:11:"description";s:26:"ImageCache User Interface.";s:12:"dependencies";a:2:{i:0;s:10:"imagecache";i:1;s:8:"imageapi";}s:7:"package";s:10:"ImageCache";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/jquery_ui/jquery_ui.module',
+  'name' => 'jquery_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:8:{s:4:"name";s:9:"jQuery UI";s:11:"description";s:55:"Provides the jQuery UI plug-in to other Drupal modules.";s:7:"package";s:14:"User interface";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/link/link.module',
+  'name' => 'link',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:4:"Link";s:11:"description";s:32:"Defines simple link 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:5:"files";a:1:{i:0;s:16:"link.migrate.inc";}s:7:"version";s:8:"6.x-2.11";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1393559923";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/nodeaccess/nodeaccess.module',
+  'name' => 'nodeaccess',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:9:{s:4:"name";s:10:"Nodeaccess";s:11:"description";s:32:"Provides per node access control";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.5";s:7:"project";s:10:"nodeaccess";s:9:"datestamp";s:10:"1412640229";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/phone.module',
+  'name' => 'phone',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6200',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:11:"Phone - CCK";s:11:"description";s:84:"The phone module allows administrators to define a CCK field type for phone numbers.";s:7:"package";s:3:"CCK";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.18";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1294067495";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/variable/variable.module',
+  'name' => 'variable',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:9:{s:4:"name";s:12:"Variable API";s:11:"description";s:12:"Variable API";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' => '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' => 'sites/all/modules/views/tests/views_test.module',
+  'name' => 'views_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{s:4:"name";s:10:"Views Test";s:11:"description";s:22:"Test module for Views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:6:"hidden";b:1;s:5:"files";a:2:{i:0;s:17:"views_test.module";i:1;s:18:"views_test.install";}s:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/views.module',
+  'name' => 'views',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:5:"Views";s:11:"description";s:55:"Create customized lists and queries from your database.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/views_export/views_export.module',
+  'name' => 'views_export',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:14:"Views exporter";s:11:"description";s:40:"Allows exporting multiple views at once.";s:7:"package";s:5:"Views";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/views_ui.module',
+  'name' => 'views_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:10:{s:4:"name";s:8:"Views UI";s:11:"description";s:93:"Administrative interface to views. Without this module, you cannot create or edit your views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:12:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:14:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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:13:{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:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";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',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'trid' => 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',
+  'language',
+  'trid',
+))
+->values(array(
+  'tid' => '1',
+  'vid' => '1',
+  'name' => 'zu - term 1 of vocabulary 1',
+  'description' => 'zu - description of term 1 of vocabulary 1',
+  'weight' => '0',
+  'language' => 'zu',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '2',
+  'vid' => '2',
+  'name' => 'fr - term 2 of vocabulary 2',
+  'description' => 'fr - description of term 2 of vocabulary 2',
+  'weight' => '3',
+  'language' => 'fr',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '3',
+  'vid' => '2',
+  'name' => 'fr - term 3 of vocabulary 2',
+  'description' => 'fr - description of term 3 of vocabulary 2',
+  'weight' => '4',
+  'language' => 'fr',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '4',
+  'vid' => '3',
+  'name' => 'term 4 of vocabulary 3',
+  'description' => 'description of term 4 of vocabulary 3',
+  'weight' => '6',
+  'language' => '',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '5',
+  'vid' => '3',
+  'name' => 'term 5 of vocabulary 3',
+  'description' => 'description of term 5 of vocabulary 3',
+  'weight' => '7',
+  'language' => '',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '6',
+  'vid' => '3',
+  'name' => 'term 6 of vocabulary 3',
+  'description' => 'description of term 6 of vocabulary 3',
+  'weight' => '8',
+  'language' => '',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '7',
+  'vid' => '1',
+  'name' => 'fr - term 2 of vocabulary 1',
+  'description' => 'fr - desc of term 2 vocab 1',
+  'weight' => '0',
+  'language' => 'fr',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '8',
+  'vid' => '7',
+  'name' => 'General discussion',
+  'description' => '',
+  'weight' => '0',
+  'language' => '',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '9',
+  'vid' => '3',
+  'name' => 'fr - term 4 of vocabulary 3',
+  'description' => '',
+  'weight' => '0',
+  'language' => 'fr',
+  'trid' => '1',
+))
+->values(array(
+  'tid' => '10',
+  'vid' => '3',
+  'name' => 'zu - term 4 of vocabulary 3',
+  'description' => '',
+  'weight' => '0',
+  'language' => 'zu',
+  'trid' => '1',
+))
+->values(array(
+  'tid' => '11',
+  'vid' => '3',
+  'name' => 'term 7 of vocabulary 3',
+  'description' => '',
+  'weight' => '0',
+  'language' => 'en',
+  'trid' => '2',
+))
+->values(array(
+  'tid' => '12',
+  'vid' => '3',
+  'name' => 'fr - term 7 of vocabulary 3',
+  'description' => '',
+  'weight' => '0',
+  'language' => 'fr',
+  'trid' => '2',
+))
+->values(array(
+  'tid' => '13',
+  'vid' => '3',
+  'name' => 'zu - term 7 of vocabulary 3',
+  'description' => '',
+  'weight' => '0',
+  'language' => 'zu',
+  'trid' => '2',
+))
+->values(array(
+  'tid' => '14',
+  'vid' => '5',
+  'name' => 'Talos IV',
+  'description' => 'The home of Captain Christopher Pike.',
+  'weight' => '0',
+  'language' => '',
+  'trid' => '0',
+))
+->values(array(
+  'tid' => '15',
+  'vid' => '5',
+  'name' => 'Vulcan',
+  'description' => '',
+  'weight' => '0',
+  'language' => '',
+  'trid' => '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' => '1',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '2',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '4',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '7',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '8',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '9',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '10',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '11',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '12',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '13',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '14',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '15',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '3',
+  'parent' => '2',
+))
+->values(array(
+  'tid' => '5',
+  'parent' => '4',
+))
+->values(array(
+  'tid' => '6',
+  'parent' => '4',
+))
+->values(array(
+  'tid' => '6',
+  'parent' => '5',
+))
+->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' => '1',
+  'vid' => '1',
+  'tid' => '1',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '1',
+  'tid' => '2',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'tid' => '2',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'tid' => '3',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'tid' => '1',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'tid' => '2',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'tid' => '4',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '2002',
+  'tid' => '4',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '21',
+  'tid' => '5',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2001',
+  'tid' => '5',
+))
+->values(array(
+  'nid' => '19',
+  'vid' => '22',
+  'tid' => '8',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '2003',
+  'tid' => '9',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '2003',
+  'tid' => '14',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '21',
+  'tid' => '15',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '2002',
+  'tid' => '15',
+))
+->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' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+    'vid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('upload')
+->fields(array(
+  'fid',
+  'nid',
+  'vid',
+  'description',
+  'list',
+  'weight',
+))
+->values(array(
+  'fid' => '1',
+  'nid' => '1',
+  'vid' => '1',
+  'description' => 'file 1-1-1',
+  'list' => '0',
+  'weight' => '-1',
+))
+->values(array(
+  'fid' => '2',
+  'nid' => '1',
+  'vid' => '2',
+  'description' => 'file 1-2-2',
+  'list' => '1',
+  'weight' => '4',
+))
+->values(array(
+  'fid' => '2',
+  'nid' => '2',
+  'vid' => '3',
+  'description' => 'file 2-3-2',
+  'list' => '1',
+  'weight' => '2',
+))
+->values(array(
+  'fid' => '3',
+  'nid' => '1',
+  'vid' => '2',
+  'description' => 'file 1-2-3',
+  'list' => '0',
+  'weight' => '3',
+))
+->values(array(
+  'fid' => '3',
+  'nid' => '2',
+  'vid' => '3',
+  'description' => 'file 2-3-3',
+  'list' => '0',
+  'weight' => '1',
+))
+->values(array(
+  'fid' => '1',
+  'nid' => '1',
+  'vid' => '5',
+  'description' => 'file 1-1-1',
+  'list' => '0',
+  'weight' => '-1',
+))
+->values(array(
+  'fid' => '3',
+  'nid' => '12',
+  'vid' => '15',
+  'description' => 'file 12-15-3',
+  'list' => '0',
+  'weight' => '0',
+))
+->values(array(
+  'fid' => '1',
+  'nid' => '1',
+  'vid' => '2001',
+  'description' => 'file 1-1-1',
+  'list' => '0',
+  'weight' => '-1',
+))
+->execute();
+$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' => '2',
+  'src' => 'node/2',
+  'dst' => 'alias-two',
+  'language' => 'en',
+))
+->values(array(
+  'pid' => '3',
+  'src' => 'node/3',
+  'dst' => 'alias-three',
+  'language' => '',
+))
+->values(array(
+  'pid' => '4',
+  'src' => 'node/10',
+  'dst' => 'the-real-mccoy',
+  'language' => 'en',
+))
+->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' => '7',
+  'src' => 'node/13',
+  'dst' => 'the-zulu-people',
+  'language' => 'en',
+))
+->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' => '1543973668',
+  'login' => '1543973668',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '',
+  'init' => 'root@localhost',
+  'data' => 'b:0;',
+  'timezone_name' => '',
+  'pass_plain' => 'root',
+  'expected_timezone' => NULL,
+  'timezone_id' => '0',
+))
+->values(array(
+  'uid' => '2',
+  'name' => 'john.doe',
+  'pass' => '671cc45b3e2c6eb751d6a554dc5a5fe7',
+  'mail' => 'john.doe@example.com',
+  'mode' => '0',
+  'sort' => '0',
+  'threshold' => '0',
+  'theme' => '',
+  'signature' => 'John Doe | john.doe@example.com',
+  'signature_format' => '1',
+  'created' => '1391150052',
+  'access' => '1391259672',
+  'login' => '1391152253',
+  'status' => '1',
+  'timezone' => '3600',
+  'language' => 'fr',
+  'picture' => 'core/tests/fixtures/files/image-test.jpg',
+  'init' => 'doe@example.com',
+  'data' => 'a:2:{s:7:"contact";i:1;s:13:"form_build_id";s:48:"form-qu_DMjE-Vfg01arT5J4VbuBCkOgx_LeySJx4qrPOSuA";}',
+  'timezone_name' => 'Europe/Berlin',
+  'pass_plain' => 'john.doe_pass',
+  'expected_timezone' => 'Europe/Berlin',
+  'timezone_id' => '1',
+))
+->values(array(
+  'uid' => '8',
+  'name' => 'joe.roe',
+  'pass' => '93a70546e6c032c135499fed70cfe438',
+  'mail' => 'joe.roe@example.com',
+  'mode' => '0',
+  'sort' => '0',
+  'threshold' => '0',
+  'theme' => '',
+  'signature' => 'JR',
+  'signature_format' => '2',
+  'created' => '1391150053',
+  'access' => '1391259673',
+  'login' => '1391152254',
+  'status' => '1',
+  'timezone' => '7200',
+  'language' => 'ro',
+  'picture' => 'core/tests/fixtures/files/image-test.png',
+  'init' => 'roe@example.com',
+  'data' => 'a:2:{s:7:"contact";i:0;s:13:"form_build_id";s:48:"form-1TxjbL2_1dEHIxEu2Db6OvEsSN1x9ILH1VCgnvsO6LE";}',
+  'timezone_name' => 'Europe/Helsinki',
+  'pass_plain' => 'joe.roe_pass',
+  'expected_timezone' => 'Europe/Helsinki',
+  'timezone_id' => '0',
+))
+->values(array(
+  'uid' => '15',
+  'name' => 'joe.bloggs',
+  'pass' => '2ff23139aeb404274dc67cbee8c64fb0',
+  'mail' => 'joe.bloggs@example.com',
+  'mode' => '0',
+  'sort' => '0',
+  'threshold' => '0',
+  'theme' => '',
+  'signature' => 'bloggs',
+  'signature_format' => '1',
+  'created' => '1391150054',
+  'access' => '1391259674',
+  'login' => '1391152255',
+  'status' => '1',
+  'timezone' => '-28800',
+  'language' => 'en',
+  'picture' => '',
+  'init' => 'bloggs@example.com',
+  'data' => 'a:0:{}',
+  'timezone_name' => 'America/Anchorage',
+  'pass_plain' => 'joe.bloggs_pass',
+  'expected_timezone' => NULL,
+  'timezone_id' => '0',
+))
+->values(array(
+  'uid' => '16',
+  'name' => 'sal.saraniti',
+  'pass' => '77404657c8bcd8e9aa8f3147856efb4f',
+  'mail' => 'sal.saraniti@example.com',
+  'mode' => '0',
+  'sort' => '0',
+  'threshold' => '0',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => '0',
+  'created' => '1391151054',
+  'access' => '1391259574',
+  'login' => '1391162255',
+  'status' => '1',
+  'timezone' => '0',
+  'language' => 'en',
+  'picture' => '',
+  'init' => 'sal.saraniti@example.com',
+  'data' => 'a:0:{}',
+  'timezone_name' => 'UTC',
+  'pass_plain' => 'sal.saraniti',
+  'expected_timezone' => NULL,
+  'timezone_id' => '0',
+))
+->values(array(
+  'uid' => '17',
+  'name' => 'terry.saraniti',
+  'pass' => '8fb310d3ec746d720e0e8efefd0cce5c',
+  'mail' => 'terry.saraniti@example.com',
+  'mode' => '0',
+  'sort' => '0',
+  'threshold' => '0',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => '0',
+  'created' => '1390151054',
+  'access' => '1390259574',
+  'login' => '1390162255',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => 'en',
+  'picture' => '',
+  'init' => 'terry.saraniti@example.com',
+  'data' => 'a:0:{}',
+  'timezone_name' => NULL,
+  'pass_plain' => 'terry.saraniti',
+  '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->insert('users_roles')
+->fields(array(
+  'uid',
+  'rid',
+))
+->values(array(
+  'uid' => '2',
+  'rid' => '3',
+))
+->values(array(
+  'uid' => '15',
+  'rid' => '3',
+))
+->values(array(
+  'uid' => '16',
+  'rid' => '3',
+))
+->values(array(
+  'uid' => '8',
+  'rid' => '4',
+))
+->values(array(
+  'uid' => '15',
+  'rid' => '4',
+))
+->values(array(
+  'uid' => '17',
+  'rid' => '4',
+))
+->values(array(
+  'uid' => '8',
+  'rid' => '5',
+))
+->values(array(
+  'uid' => '15',
+  'rid' => '5',
+))
+->values(array(
+  'uid' => '16',
+  'rid' => '5',
+))
+->execute();
+$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_allowed_html_tags',
+  'value' => 's:70:"<a> <b> <br /> <dd> <dl> <dt> <em> <i> <li> <ol> <p> <strong> <u> <ul>";',
+))
+->values(array(
+  'name' => 'aggregator_clear',
+  'value' => 's:7:"9676800";',
+))
+->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_summary_items',
+  'value' => 's:1:"3";',
+))
+->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_anonymous_test_event',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_anonymous_test_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_anonymous_test_planet',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_anonymous_test_story',
+  'value' => 'i:0;',
+))
+->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_controls_test_event',
+  'value' => 'i:3;',
+))
+->values(array(
+  'name' => 'comment_controls_test_page',
+  'value' => 'i:3;',
+))
+->values(array(
+  'name' => 'comment_controls_test_planet',
+  'value' => 'i:3;',
+))
+->values(array(
+  'name' => 'comment_controls_test_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_mode_test_event',
+  'value' => 'i:4;',
+))
+->values(array(
+  'name' => 'comment_default_mode_test_page',
+  'value' => 'i:4;',
+))
+->values(array(
+  'name' => 'comment_default_mode_test_planet',
+  'value' => 'i:4;',
+))
+->values(array(
+  'name' => 'comment_default_mode_test_story',
+  'value' => 'i:4;',
+))
+->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_order_test_event',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_default_order_test_page',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_default_order_test_planet',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_default_order_test_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_default_per_page_test_event',
+  'value' => 'i:50;',
+))
+->values(array(
+  'name' => 'comment_default_per_page_test_page',
+  'value' => 'i:50;',
+))
+->values(array(
+  'name' => 'comment_default_per_page_test_planet',
+  'value' => 'i:50;',
+))
+->values(array(
+  'name' => 'comment_default_per_page_test_story',
+  'value' => 'i:50;',
+))
+->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_form_location_test_event',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_form_location_test_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_form_location_test_planet',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'comment_form_location_test_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_preview_test_event',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_preview_test_page',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_preview_test_planet',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_preview_test_story',
+  'value' => 'i:1;',
+))
+->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' => 'comment_subject_field_test_event',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_subject_field_test_page',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_subject_field_test_planet',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'comment_subject_field_test_story',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'configurable_timezones',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'contact_default_status',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'contact_hourly_threshold',
+  'value' => 'i:3;',
+))
+->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_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_threshold_error',
+  'value' => 'i:1209600;',
+))
+->values(array(
+  'name' => 'cron_threshold_warning',
+  'value' => 'i:172800;',
+))
+->values(array(
+  'name' => 'css_js_query_string',
+  'value' => 's:20:"y8SAkMTxRZndiw700000";',
+))
+->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:25:"core/tests/fixtures/files";',
+))
+->values(array(
+  'name' => 'file_directory_temp',
+  'value' => 's:10:"files/temp";',
+))
+->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_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' => 'i18ntaxonomy_vocabulary',
+  'value' => 'a:4:{i:1;s:1:"3";i:2;s:1:"2";i:3;s:1:"3";i:5;s:1:"1";}',
+))
+->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_node_employee',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'i18n_node_sponsor',
+  'value' => 'i:1;',
+))
+->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:16:{i:0;s:14:"misc/jquery.js";i:1;s:14:"misc/drupal.js";i:2;s:19:"misc/tableheader.js";s:10:"refresh:fr";s:7:"waiting";s:10:"refresh:zu";s:7:"waiting";i:3;s:17:"misc/tabledrag.js";i:4;s:32:"sites/all/modules/cck/content.js";i:5;s:16:"misc/textarea.js";i:6;s:16:"misc/collapse.js";i:7;s:12:"misc/form.js";i:8;s:19:"misc/tableselect.js";i:9;s:20:"modules/user/user.js";i:10;s:20:"misc/autocomplete.js";i:11;s:19:"misc/jquery.form.js";i:12;s:12:"misc/ahah.js";i:13;s:14:"misc/teaser.js";}',
+))
+->values(array(
+  'name' => 'language_content_type_article',
+  'value' => 's:1:"2";',
+))
+->values(array(
+  'name' => 'language_content_type_employee',
+  'value' => 's:1:"2";',
+))
+->values(array(
+  'name' => 'language_content_type_sponsor',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'language_count',
+  'value' => 'i:11;',
+))
+->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',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'locale_cache_strings',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'locale_js_directory',
+  'value' => 's:9:"languages";',
+))
+->values(array(
+  'name' => 'menu_default_node_menu',
+  'value' => 's:10:"navigation";',
+))
+->values(array(
+  'name' => 'menu_expanded',
+  'value' => 'a:1:{i:0;s:15:"secondary-links";}',
+))
+->values(array(
+  'name' => 'menu_masks',
+  'value' => 'a:22:{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:13;i:13;i:12;i:14;i:11;i:15;i:7;i:16;i:6;i:17;i:5;i:18;i:4;i:19;i:3;i:20;i:2;i:21;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_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' => 'statistics_block_top_all_num',
+  'value' => 's:1:"8";',
+))
+->values(array(
+  'name' => 'statistics_block_top_day_num',
+  'value' => 's:1:"7";',
+))
+->values(array(
+  'name' => 'statistics_block_top_last_num',
+  'value' => 's:1:"9";',
+))
+->values(array(
+  'name' => 'statistics_count_content_views',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'statistics_enable_access_log',
+  'value' => 's:1:"0";',
+))
+->values(array(
+  'name' => 'statistics_flush_accesslog_timer',
+  'value' => 's:6:"259200";',
+))
+->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_check_frequency',
+  'value' => 's:1:"7";',
+))
+->values(array(
+  'name' => 'update_fetch_url',
+  'value' => 's:41:"http://updates.drupal.org/release-history";',
+))
+->values(array(
+  'name' => 'update_max_fetch_attempts',
+  'value' => 'i:2;',
+))
+->values(array(
+  'name' => 'update_notification_threshold',
+  'value' => 's:3:"all";',
+))
+->values(array(
+  'name' => 'update_notify_emails',
+  'value' => 'a:0:{}',
+))
+->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',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('vocabulary')
+->fields(array(
+  'vid',
+  'name',
+  'description',
+  'help',
+  'relations',
+  'hierarchy',
+  'multiple',
+  'required',
+  'tags',
+  'module',
+  'weight',
+  'language',
+))
+->values(array(
+  'vid' => '1',
+  'name' => 'vocabulary 1 (i=0)',
+  'description' => 'description of vocabulary 1 (i=0)',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '0',
+  'required' => '0',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '4',
+  'language' => '',
+))
+->values(array(
+  'vid' => '2',
+  'name' => 'vocabulary 2 (i=1)',
+  'description' => 'description of vocabulary 2 (i=1)',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '1',
+  'multiple' => '1',
+  'required' => '0',
+  'tags' => '1',
+  'module' => 'taxonomy',
+  'weight' => '5',
+  'language' => 'fr',
+))
+->values(array(
+  'vid' => '3',
+  'name' => 'vocabulary 3 (i=2)',
+  'description' => 'description of vocabulary 3 (i=2)',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '1',
+  'required' => '0',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '6',
+  'language' => '',
+))
+->values(array(
+  'vid' => '4',
+  'name' => 'Tags',
+  'description' => 'Tags Vocabulary',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '0',
+  'required' => '1',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => '',
+))
+->values(array(
+  'vid' => '5',
+  'name' => 'vocabulary name much longer than thirty two characters',
+  'description' => 'description of vocabulary name much longer than thirty two characters',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '1',
+  'required' => '0',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '7',
+  'language' => '',
+))
+->values(array(
+  'vid' => '6',
+  'name' => 'Type',
+  'description' => '',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '0',
+  'required' => '0',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => '',
+))
+->values(array(
+  'vid' => '7',
+  'name' => 'Forums',
+  'description' => '',
+  'help' => '',
+  'relations' => '1',
+  'hierarchy' => '0',
+  'multiple' => '0',
+  'required' => '0',
+  'tags' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => '',
+))
+->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' => '4',
+  'type' => 'article',
+))
+->values(array(
+  'vid' => '3',
+  'type' => 'employee',
+))
+->values(array(
+  'vid' => '5',
+  'type' => 'employee',
+))
+->values(array(
+  'vid' => '7',
+  'type' => 'forum',
+))
+->values(array(
+  'vid' => '4',
+  'type' => 'page',
+))
+->values(array(
+  'vid' => '6',
+  'type' => 'sponsor',
+))
+->values(array(
+  'vid' => '1',
+  'type' => 'story',
+))
+->values(array(
+  'vid' => '2',
+  'type' => 'story',
+))
+->values(array(
+  'vid' => '3',
+  'type' => 'story',
+))
+->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',
+));
diff --git a/core/modules/aggregator/tests/fixtures/drupal7.php b/core/modules/aggregator/tests/fixtures/drupal7.php
new file mode 100644
index 0000000000000000000000000000000000000000..26a5b50fdd524223095f7c98a1e96353c72a579a
--- /dev/null
+++ b/core/modules/aggregator/tests/fixtures/drupal7.php
@@ -0,0 +1,61055 @@
+<?php
+// phpcs:ignoreFile
+/**
+ * @file
+ * A database agnostic dump for testing purposes.
+ *
+ * This file was generated by the Drupal 9.3.0-dev db-tools.php script.
+ */
+
+use Drupal\Core\Database\Database;
+
+$connection = Database::getConnection();
+
+$connection->schema()->createTable('accesslog', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'sid' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'path' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'url' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '128',
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'timer' => 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(
+    'aid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('accesslog')
+->fields(array(
+  'aid',
+  'sid',
+  'title',
+  'path',
+  'url',
+  'hostname',
+  'uid',
+  'timer',
+  'timestamp',
+))
+->values(array(
+  'aid' => '92',
+  'sid' => 'a8ksMY2GH4yXK0-PsLNAlCv4zNnapnyCpx4lryZDEfk',
+  'title' => '',
+  'path' => 'node',
+  'url' => 'http://drupal7.local/?q=user/register',
+  'hostname' => '127.0.0.1',
+  'uid' => '0',
+  'timer' => '655',
+  'timestamp' => '1444944970',
+))
+->values(array(
+  'aid' => '93',
+  'sid' => 'e89G2redQpxRTIndbV3qH8snVR621DqSQ2s4vciJedA',
+  'title' => '',
+  'path' => 'node',
+  'url' => 'http://drupal7.local/',
+  'hostname' => '127.0.0.1',
+  'uid' => '0',
+  'timer' => '214',
+  'timestamp' => '1444944974',
+))
+->values(array(
+  'aid' => '94',
+  'sid' => 'KkVxQTCiKqKEGNcRs7GYrmXXbEk4szXCHVTknFkbiG0',
+  'title' => 'User account',
+  'path' => 'user/login',
+  'url' => '',
+  'hostname' => '127.0.0.1',
+  'uid' => '0',
+  'timer' => '259',
+  'timestamp' => '1444945094',
+))
+->values(array(
+  'aid' => '95',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'My account',
+  'path' => 'user/login',
+  'url' => 'http://drupal7.local/?q=user/login',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '217',
+  'timestamp' => '1444945097',
+))
+->values(array(
+  'aid' => '96',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'root',
+  'path' => 'user/1',
+  'url' => 'http://drupal7.local/?q=user/login',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '211',
+  'timestamp' => '1444945097',
+))
+->values(array(
+  'aid' => '97',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Modules',
+  'path' => 'admin/modules',
+  'url' => 'http://drupal7.local/user/1',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '619',
+  'timestamp' => '1444945104',
+))
+->values(array(
+  'aid' => '98',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Configuration',
+  'path' => 'admin/config',
+  'url' => 'http://drupal7.local/admin/modules',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '273',
+  'timestamp' => '1444945114',
+))
+->values(array(
+  'aid' => '99',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language',
+  'url' => 'http://drupal7.local/admin/config',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '213',
+  'timestamp' => '1444945121',
+))
+->values(array(
+  'aid' => '100',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language/add',
+  'url' => 'http://drupal7.local/admin/config/regional/language',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '148',
+  'timestamp' => '1444945122',
+))
+->values(array(
+  'aid' => '101',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language/add',
+  'url' => 'http://drupal7.local/admin/config/regional/language/add',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '260',
+  'timestamp' => '1444945153',
+))
+->values(array(
+  'aid' => '102',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language/add',
+  'url' => '',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '195',
+  'timestamp' => '1444945160',
+))
+->values(array(
+  'aid' => '103',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language/add',
+  'url' => 'http://drupal7.local/?q=admin/config/regional/language/add',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '177',
+  'timestamp' => '1444945168',
+))
+->values(array(
+  'aid' => '104',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language',
+  'url' => 'http://drupal7.local/?q=admin/config/regional/language/add',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '145',
+  'timestamp' => '1444945168',
+))
+->values(array(
+  'aid' => '105',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language',
+  'url' => '',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '159',
+  'timestamp' => '1444945175',
+))
+->values(array(
+  'aid' => '106',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language',
+  'url' => 'http://drupal7.local/?q=admin/config/regional/language',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '152',
+  'timestamp' => '1444945176',
+))
+->values(array(
+  'aid' => '107',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Languages',
+  'path' => 'admin/config/regional/language',
+  'url' => 'http://drupal7.local/?q=admin/config/regional/language',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '148',
+  'timestamp' => '1444945176',
+))
+->values(array(
+  'aid' => '108',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Structure',
+  'path' => 'admin/structure',
+  'url' => 'http://drupal7.local/admin/config/regional/language',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '156',
+  'timestamp' => '1444945206',
+))
+->values(array(
+  'aid' => '109',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Content types',
+  'path' => 'admin/structure/types',
+  'url' => 'http://drupal7.local/admin/structure',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '154',
+  'timestamp' => '1444945208',
+))
+->values(array(
+  'aid' => '110',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Blog entry',
+  'path' => 'admin/structure/types/manage/blog',
+  'url' => 'http://drupal7.local/admin/structure/types',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '203',
+  'timestamp' => '1444945211',
+))
+->values(array(
+  'aid' => '111',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Parent menu items',
+  'path' => 'admin/structure/menu/parents',
+  'url' => 'http://drupal7.local/admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '211',
+  'timestamp' => '1444945211',
+))
+->values(array(
+  'aid' => '112',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Blog entry',
+  'path' => 'admin/structure/types/manage/blog',
+  'url' => 'http://drupal7.local/admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '224',
+  'timestamp' => '1444945236',
+))
+->values(array(
+  'aid' => '113',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Parent menu items',
+  'path' => 'admin/structure/menu/parents',
+  'url' => 'http://drupal7.local/admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '165',
+  'timestamp' => '1444945237',
+))
+->values(array(
+  'aid' => '114',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Blog entry',
+  'path' => 'admin/structure/types/manage/blog',
+  'url' => '',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '155',
+  'timestamp' => '1444945242',
+))
+->values(array(
+  'aid' => '115',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Parent menu items',
+  'path' => 'admin/structure/menu/parents',
+  'url' => 'http://drupal7.local/?q=admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '217',
+  'timestamp' => '1444945242',
+))
+->values(array(
+  'aid' => '116',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Blog entry',
+  'path' => 'admin/structure/types/manage/blog',
+  'url' => 'http://drupal7.local/?q=admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '667',
+  'timestamp' => '1444945246',
+))
+->values(array(
+  'aid' => '117',
+  'sid' => 'FA1BMWZvsAAE1G-OBMzfiJyA12sh588cOKSmEmxFQiA',
+  'title' => 'Content types',
+  'path' => 'admin/structure/types',
+  'url' => 'http://drupal7.local/?q=admin/structure/types/manage/blog',
+  'hostname' => '127.0.0.1',
+  'uid' => '1',
+  'timer' => '149',
+  'timestamp' => '1444945246',
+))
+->execute();
+$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('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' => 'normal',
+    ),
+    'block' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  '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(
+    'fid',
+    'cid',
+  ),
+  '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(
+    'iid',
+    'cid',
+  ),
+  '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' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'refresh' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'checked' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'queued' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'link' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'image' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'hash' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+      'default' => '',
+    ),
+    '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' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('aggregator_feed')
+->fields(array(
+  'fid',
+  'title',
+  'url',
+  'refresh',
+  'checked',
+  'queued',
+  'link',
+  'description',
+  'image',
+  'hash',
+  'etag',
+  'modified',
+  'block',
+))
+->values(array(
+  'fid' => '1',
+  'title' => 'Know Your Meme',
+  'url' => 'http://knowyourmeme.com/newsfeed.rss',
+  'refresh' => '900',
+  'checked' => '1444944970',
+  'queued' => '0',
+  'link' => 'http://knowyourmeme.com',
+  'description' => 'New items added to the News Feed',
+  'image' => '',
+  'hash' => 'e6295b3ba81b24db62b41515494a7e9fb87979ff45045a1c946de5fa5abc9c52',
+  'etag' => '"bad5e20e4993f31c869cffd22f1645b9"',
+  'modified' => '0',
+  'block' => '5',
+))
+->execute();
+$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' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'author' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'guid' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'iid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('aggregator_item')
+->fields(array(
+  'iid',
+  'fid',
+  'title',
+  'link',
+  'author',
+  'description',
+  'timestamp',
+  'guid',
+))
+->values(array(
+  'iid' => '2',
+  'fid' => '1',
+  'title' => 'Fido, Take the Wheel',
+  'link' => 'http://knowyourmeme.com/videos/127817-dogs',
+  'author' => '',
+  'description' => '<img alt="D70olsu" src="http://i.imgur.com/D70Olsu.jpg?fb" /><p>When little Timmy had too much to drink, the family dog was forced into the role of designated driver.</p>',
+  'timestamp' => '1444860534',
+  'guid' => 'post:18816',
+))
+->values(array(
+  'iid' => '3',
+  'fid' => '1',
+  'title' => 'One Punch Man Anime Premieres in Japan',
+  'link' => 'http://knowyourmeme.com/memes/subcultures/one-punch-man',
+  'author' => '',
+  'description' => '<img alt="49b" src="http://i2.kym-cdn.com/news_feeds/icons/mobile/000/018/819/49b.jpg" /><p>The first two episodes of the much anticipated anime adaptation of <i>One Punch Man</i> were finally aired in Japan this month.</p>',
+  'timestamp' => '1444863415',
+  'guid' => 'post:18819',
+))
+->values(array(
+  'iid' => '4',
+  'fid' => '1',
+  'title' => '’Tis the Season to Be Forever Alone',
+  'link' => 'http://knowyourmeme.com/photos/1029494-forever-alone',
+  'author' => '',
+  'description' => '<img alt="336" src="http://i2.kym-cdn.com/photos/images/newsfeed/001/029/494/336.jpg" />',
+  'timestamp' => '1444864413',
+  'guid' => 'post:18821',
+))
+->values(array(
+  'iid' => '5',
+  'fid' => '1',
+  'title' => 'Legend of Zelda: Symphony of The Goddesses',
+  'link' => 'http://knowyourmeme.com/videos/128124-the-legend-of-zelda',
+  'author' => '',
+  'description' => '<img alt="1a9" src="http://i3.kym-cdn.com/news_feeds/icons/mobile/000/018/824/1a9.jpg" /><p>Rejoice, nerds! This is the music that awaits you in heaven. Check out The Legend of Zelda: Symphony of the Goddesses’ performance on the Late Show with Stephen Colbert.</p>',
+  'timestamp' => '1444934645',
+  'guid' => 'post:18824',
+))
+->values(array(
+  'iid' => '6',
+  'fid' => '1',
+  'title' => '“Your Mom” Jokes',
+  'link' => 'http://knowyourmeme.com/memes/your-mom-jokes',
+  'author' => '',
+  'description' => '<img alt="3bc" src="http://i3.kym-cdn.com/news_feeds/icons/mobile/000/018/823/3bc.jpg" /><p>The earliest recorded example of a maternal insult joke comes from an ancient Babylonian tablet dated back to 1,500 <span class="caps">BCE</span>, which contains an incomplete riddle about a promiscuous mother.</p>',
+  'timestamp' => '1444928716',
+  'guid' => 'post:18823',
+))
+->values(array(
+  'iid' => '7',
+  'fid' => '1',
+  'title' => 'DBZ Voice Actors Dub Over Classic Movies',
+  'link' => 'http://knowyourmeme.com/videos/128169-dragon-ball',
+  'author' => '',
+  'description' => '<img alt="D8c" src="http://i1.kym-cdn.com/news_feeds/icons/mobile/000/018/826/d8c.jpg" /><p>Some of the most recognizable voices behind the characters of Dragon Ball Z gather at The Nerdist studio for a parody dub of famous film scenes from <em>Ace Ventura</em> and <em>Independence Day</em> to <em>Zoolander</em> and <em>Meet the Parents</em>.</p>',
+  'timestamp' => '1444939569',
+  'guid' => 'post:18826',
+))
+->values(array(
+  'iid' => '8',
+  'fid' => '1',
+  'title' => 'Happy Birthday, Cure-chan!',
+  'link' => 'http://knowyourmeme.com/memes/cure-chan',
+  'author' => '',
+  'description' => '<img alt="E8c" src="http://i3.kym-cdn.com/news_feeds/icons/mobile/000/018/825/e8c.jpg" /><p>The archnemesis of <a href="/memes/ebola-chan">Ebola-chan</a> was born one year ago this week.</p>',
+  'timestamp' => '1444938083',
+  'guid' => 'post:18825',
+))
+->values(array(
+  'iid' => '9',
+  'fid' => '1',
+  'title' => 'That Face When Retweets Ain’t Coming In',
+  'link' => 'http://knowyourmeme.com/photos/1029430-my-face-when',
+  'author' => '',
+  'description' => '<img alt="C51" src="http://i2.kym-cdn.com/news_feeds/icons/original/000/018/827/c51.jpg" />',
+  'timestamp' => '1444940736',
+  'guid' => 'post:18827',
+))
+->values(array(
+  'iid' => '10',
+  'fid' => '1',
+  'title' => 'Back to the Future Stars Talk Film’s Predictions',
+  'link' => 'http://knowyourmeme.com/videos/128173-back-to-the-future-day',
+  'author' => '',
+  'description' => '<img alt="944" src="http://i2.kym-cdn.com/news_feeds/icons/mobile/000/018/828/944.jpg" /><p>In honor of next week being the real <a href="/memes/back-to-the-future-day">Back to the Future Day</a>, Christopher Lloyd and Michael J. Fox recently got together (at the prompting of Toyota) to discuss which of the film’s predictions have come to pass in 2015.</p>',
+  'timestamp' => '1444943309',
+  'guid' => 'post:18828',
+))
+->values(array(
+  'iid' => '11',
+  'fid' => '1',
+  'title' => 'Chad Says Beta Things',
+  'link' => 'http://knowyourmeme.com/memes/chad-says-beta-things',
+  'author' => '',
+  'description' => '<img alt="937" src="http://i1.kym-cdn.com/news_feeds/icons/mobile/000/018/829/937.jpg" /><p>This series of awkward Tinder messages sent by a fake <a href="http://knowyourmeme.com/memes/chad-thundercock">Chad</a> Tinder profile has caused a recent surge in popularity of the corn emoji.</p>',
+  'timestamp' => '1444944831',
+  'guid' => 'post:18829',
+))
+->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',
+  ),
+  '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',
+    ),
+    'i18n_mode' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  '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',
+  'i18n_mode',
+))
+->values(array(
+  'bid' => '1',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '3',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '10',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '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',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '7',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '8',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '9',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '12',
+  'module' => 'search',
+  'delta' => 'form',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '-10',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '13',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '14',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '15',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '16',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '17',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '20',
+  'module' => 'user',
+  'delta' => 'new',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '21',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '22',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '23',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '24',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '26',
+  'module' => 'system',
+  'delta' => 'navigation',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '27',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '30',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '31',
+  'module' => 'blog',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '32',
+  'module' => 'book',
+  'delta' => 'navigation',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '5',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '33',
+  'module' => 'locale',
+  'delta' => 'language',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '34',
+  'module' => 'forum',
+  'delta' => 'active',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-2',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '35',
+  'module' => 'forum',
+  'delta' => 'new',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-2',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '36',
+  'module' => 'blog',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '37',
+  'module' => 'book',
+  'delta' => 'navigation',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '5',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '38',
+  'module' => 'locale',
+  'delta' => 'language',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '39',
+  'module' => 'forum',
+  'delta' => 'active',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-2',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '40',
+  'module' => 'forum',
+  'delta' => 'new',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-2',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '41',
+  'module' => 'menu',
+  'delta' => 'menu-test-menu',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '42',
+  'module' => 'statistics',
+  'delta' => 'popular',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '43',
+  'module' => 'menu',
+  'delta' => 'menu-test-menu',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '44',
+  'module' => 'statistics',
+  'delta' => 'popular',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '45',
+  'module' => 'block',
+  'delta' => '1',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'highlighted',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => 'Mildly amusing limerick of the day',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '46',
+  'module' => 'block',
+  'delta' => '1',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => 'Mildly amusing limerick of the day',
+  'cache' => '-1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '47',
+  'module' => 'aggregator',
+  'delta' => 'feed-1',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'bid' => '48',
+  'module' => 'aggregator',
+  'delta' => 'feed-1',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->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',
+  'i18n_mode' => '0',
+))
+->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->insert('block_custom')
+->fields(array(
+  'bid',
+  'body',
+  'info',
+  'format',
+))
+->values(array(
+  'bid' => '1',
+  'body' => "A fellow jumped off a high wall\r\nAnd had a most terrible fall\r\nHe went back to bed\r\nWith a bump on his head\r\nThat's why you don't jump off a wall",
+  'info' => 'Limerick',
+  'format' => 'filtered_html',
+))
+->execute();
+$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->insert('block_role')
+->fields(array(
+  'module',
+  'delta',
+  'rid',
+))
+->values(array(
+  'module' => 'block',
+  'delta' => '1',
+  'rid' => '2',
+))
+->execute();
+$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('book', array(
+  'fields' => array(
+    'mlid' => 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,
+    ),
+    'bid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'mlid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('book')
+->fields(array(
+  'mlid',
+  'nid',
+  'bid',
+))
+->values(array(
+  'mlid' => '480',
+  'nid' => '4',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '481',
+  'nid' => '6',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '482',
+  'nid' => '2',
+  'bid' => '4',
+))
+->values(array(
+  'mlid' => '483',
+  'nid' => '1',
+  'bid' => '8',
+))
+->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_update', 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('cache_views', 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_views_data', 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' => '1',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  '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->insert('comment')
+->fields(array(
+  'cid',
+  'pid',
+  'nid',
+  'uid',
+  'subject',
+  'hostname',
+  'created',
+  'changed',
+  'status',
+  'thread',
+  'name',
+  'mail',
+  'homepage',
+  'language',
+))
+->values(array(
+  'cid' => '1',
+  'pid' => '0',
+  'nid' => '1',
+  'uid' => '1',
+  'subject' => 'A comment',
+  'hostname' => '2001:db8:ffff:ffff:ffff:ffff:ffff:ffff',
+  'created' => '1421727536',
+  'changed' => '1421727536',
+  'status' => '1',
+  'thread' => '01/',
+  'name' => 'admin',
+  'mail' => '',
+  'homepage' => '',
+  'language' => 'en',
+))
+->values(array(
+  'cid' => '2',
+  'pid' => '0',
+  'nid' => '2',
+  'uid' => '1',
+  'subject' => 'TNG',
+  'hostname' => '127.0.0.1',
+  'created' => '1532789252',
+  'changed' => '1532789252',
+  'status' => '1',
+  'thread' => '01/',
+  'name' => 'admin',
+  'mail' => '',
+  'homepage' => '',
+  'language' => 'en',
+))
+->values(array(
+  'cid' => '3',
+  'pid' => '0',
+  'nid' => '3',
+  'uid' => '1',
+  'subject' => 'Comment to IS translation',
+  'hostname' => '46.132.185.242',
+  'created' => '1533031490',
+  'changed' => '1533031490',
+  'status' => '1',
+  'thread' => '01/',
+  'name' => 'admin',
+  'mail' => '',
+  'homepage' => '',
+  'language' => 'is',
+))
+->values(array(
+  'cid' => '4',
+  'pid' => '0',
+  'nid' => '1',
+  'uid' => '3',
+  'subject' => 'Comment without language',
+  'hostname' => 'drupal7.local',
+  'created' => '1426781880',
+  'changed' => '1426781880',
+  'status' => '1',
+  'thread' => '02/',
+  'name' => 'Bob',
+  'mail' => '',
+  'homepage' => '',
+  'language' => '',
+))
+->execute();
+$connection->schema()->createTable('contact', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'category' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'recipients' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'reply' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'selected' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('contact')
+->fields(array(
+  'cid',
+  'category',
+  'recipients',
+  'reply',
+  'weight',
+  'selected',
+))
+->values(array(
+  'cid' => '1',
+  'category' => 'Website testing',
+  'recipients' => 'joseph@flattandsons.com',
+  'reply' => '',
+  'weight' => '0',
+  'selected' => '1',
+))
+->execute();
+$connection->schema()->createTable('ctools_css_cache', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+    ),
+    'filename' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'css' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'filter' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('ctools_object_cache', array(
+  'fields' => array(
+    'sid' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+    ),
+    'obj' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+    ),
+    'updated' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'name',
+    'obj',
+  ),
+  '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->insert('entity_translation')
+->fields(array(
+  'entity_type',
+  'entity_id',
+  'revision_id',
+  'language',
+  'source',
+  'uid',
+  'status',
+  'translate',
+  'created',
+  'changed',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1421727536',
+  'changed' => '1421727536',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '0',
+  'translate' => '0',
+  'created' => '1531837764',
+  'changed' => '1531837764',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '2',
+  'status' => '1',
+  'translate' => '1',
+  'created' => '1531838064',
+  'changed' => '1531838064',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1529615790',
+  'changed' => '1529615790',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '2',
+  'status' => '1',
+  'translate' => '1',
+  'created' => '1529615802',
+  'changed' => '1529615802',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '0',
+  'translate' => '0',
+  'created' => '1529615813',
+  'changed' => '1529615813',
+))
+->values(array(
+  'entity_type' => 'user',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1527594929',
+  'changed' => '1527594929',
+))
+->values(array(
+  'entity_type' => 'user',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '0',
+  'translate' => '0',
+  'created' => '1531663916',
+  'changed' => '1531663916',
+))
+->values(array(
+  'entity_type' => 'user',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '2',
+  'status' => '1',
+  'translate' => '1',
+  'created' => '1531663925',
+  'changed' => '1531663925',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1426781880',
+  'changed' => '1426781880',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1531922259',
+  'changed' => '1531922259',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '2',
+  'status' => '1',
+  'translate' => '1',
+  'created' => '1531922267',
+  'changed' => '1531922268',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '0',
+  'translate' => '0',
+  'created' => '1531922278',
+  'changed' => '1531922279',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261523',
+  'changed' => '1568261687',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261721',
+  'changed' => '1568261721',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261548',
+  'changed' => '1568261548',
+))
+->execute();
+$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->insert('entity_translation_revision')
+->fields(array(
+  'entity_type',
+  'entity_id',
+  'revision_id',
+  'language',
+  'source',
+  'uid',
+  'status',
+  'translate',
+  'created',
+  'changed',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1529615790',
+  'changed' => '1529615790',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '15',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261523',
+  'changed' => '1568261523',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '16',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261523',
+  'changed' => '1568261523',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '17',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261523',
+  'changed' => '1568261687',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261523',
+  'changed' => '1568261687',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'fr',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261721',
+  'changed' => '1568261721',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '16',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261548',
+  'changed' => '1568261548',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '17',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261548',
+  'changed' => '1568261548',
+))
+->values(array(
+  'entity_type' => 'node',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'is',
+  'source' => 'en',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1568261548',
+  'changed' => '1568261548',
+))
+->execute();
+$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' => '6',
+  'field_name' => 'field_boolean',
+  'type' => 'list_boolean',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:14:"allowed_values";a:2:{i:0;s:3:"Off";i:1;s:1:"1";}s:23:"allowed_values_function";s: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:24:"field_data_field_boolean";a:1:{s:5:"value";s:19:"field_boolean_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:28:"field_revision_field_boolean";a:1:{s:5:"value";s:19:"field_boolean_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:1:"6";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '7',
+  'field_name' => 'field_email',
+  'type' => 'email',
+  'module' => 'email',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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_email";a:1:{s:5:"email";s:17:"field_email_email";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:26:"field_revision_field_email";a:1:{s:5:"email";s:17:"field_email_email";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:1:"7";}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '8',
+  'field_name' => 'field_phone',
+  'type' => 'phone',
+  'module' => 'phone',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:7:"country";s:2:"cr";}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_phone";a:1:{s:5:"value";s:17:"field_phone_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:26:"field_revision_field_phone";a:1:{s:5:"value";s:17:"field_phone_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:1:"8";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '9',
+  'field_name' => 'field_date',
+  '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";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:6:{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: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_date";a:1:{s:5:"value";s:16:"field_date_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_date";a:1:{s:5:"value";s:16:"field_date_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:1:"9";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '10',
+  'field_name' => 'field_date_with_end_time',
+  'type' => 'datestamp',
+  '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";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:6:{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: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:35:"field_data_field_date_with_end_time";a:2:{s:5:"value";s:30:"field_date_with_end_time_value";s:6:"value2";s:31:"field_date_with_end_time_value2";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:39:"field_revision_field_date_with_end_time";a:2:{s:5:"value";s:30:"field_date_with_end_time_value";s:6:"value2";s:31:"field_date_with_end_time_value2";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"10";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '11',
+  'field_name' => 'field_file',
+  'type' => 'file',
+  'module' => 'file',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:13:"display_field";i:0;s:15:"display_default";i:0;s:10:"uri_scheme";s:6:"public";}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_file";a:3:{s:3:"fid";s:14:"field_file_fid";s:7:"display";s:18:"field_file_display";s:11:"description";s:22:"field_file_description";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_file";a:3:{s:3:"fid";s:14:"field_file_fid";s:7:"display";s:18:"field_file_display";s:11:"description";s:22:"field_file_description";}}}}}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";}}}s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:2:"id";s:2:"11";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '12',
+  'field_name' => 'field_float',
+  'type' => 'number_float',
+  'module' => 'number',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:17:"decimal_separator";s:1:",";}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_float";a:1:{s:5:"value";s:17:"field_float_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:26:"field_revision_field_float";a:1:{s:5:"value";s:17:"field_float_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"12";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '13',
+  'field_name' => 'field_images',
+  'type' => 'image',
+  'module' => 'image',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:10:"uri_scheme";s:6:"public";s:13:"default_image";i: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:23:"field_data_field_images";a:5:{s:3:"fid";s:16:"field_images_fid";s:3:"alt";s:16:"field_images_alt";s:5:"title";s:18:"field_images_title";s:5:"width";s:18:"field_images_width";s:6:"height";s:19:"field_images_height";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:27:"field_revision_field_images";a:5:{s:3:"fid";s:16:"field_images_fid";s:3:"alt";s:16:"field_images_alt";s:5:"title";s:18:"field_images_title";s:5:"width";s:18:"field_images_width";s:6:"height";s:19:"field_images_height";}}}}}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";}}}s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:2:"id";s:2:"13";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '14',
+  'field_name' => 'field_integer',
+  'type' => 'number_integer',
+  'module' => 'number',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:1:{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:24:"field_data_field_integer";a:1:{s:5:"value";s:19:"field_integer_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:28:"field_revision_field_integer";a:1:{s:5:"value";s:19:"field_integer_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"14";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '15',
+  'field_name' => 'field_link',
+  'type' => 'link_field',
+  'module' => 'link',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:7:{s:10:"attributes";a:3:{s:6:"target";s:7:"default";s:5:"class";s:0:"";s:3:"rel";s:0:"";}s:3:"url";i:0;s:5:"title";s:8:"optional";s:11:"title_value";s:0:"";s:15:"title_maxlength";i:128;s:13:"enable_tokens";i:1;s:7:"display";a:1:{s:10:"url_cutoff";i:80;}}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_link";a:3:{s:3:"url";s:14:"field_link_url";s:5:"title";s:16:"field_link_title";s:10:"attributes";s:21:"field_link_attributes";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_link";a:3:{s:3:"url";s:14:"field_link_url";s:5:"title";s:16:"field_link_title";s:10:"attributes";s:21:"field_link_attributes";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"15";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '16',
+  'field_name' => 'field_text_list',
+  'type' => 'list_text',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:14:"allowed_values";a:3:{s:9:"Some Text";s:9:"Some Text";s:14:"Some more text";s:14:"Some more text";s:7:"The key";s:9:"The label";}s:23:"allowed_values_function";s: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_field_text_list";a:1:{s:5:"value";s:21:"field_text_list_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_text_list";a:1:{s:5:"value";s:21:"field_text_list_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"16";}',
+  'cardinality' => '3',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '17',
+  'field_name' => 'field_integer_list',
+  'type' => 'list_integer',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:14:"allowed_values";a:5:{i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:6;s:1:"6";i:7;s:1:"9";}s:23:"allowed_values_function";s: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:29:"field_data_field_integer_list";a:1:{s:5:"value";s:24:"field_integer_list_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:33:"field_revision_field_integer_list";a:1:{s:5:"value";s:24:"field_integer_list_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"17";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '18',
+  'field_name' => 'field_long_text',
+  '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:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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_field_long_text";a:3:{s:5:"value";s:21:"field_long_text_value";s:7:"summary";s:23:"field_long_text_summary";s:6:"format";s:22:"field_long_text_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_long_text";a:3:{s:5:"value";s:21:"field_long_text_value";s:7:"summary";s:23:"field_long_text_summary";s:6:"format";s:22:"field_long_text_format";}}}}}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";}}s:2:"id";s:2:"18";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '20',
+  'field_name' => 'field_term_reference',
+  '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:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:2:{i:0;a:2:{s:10:"vocabulary";s:15:"test_vocabulary";s:6:"parent";s:1:"0";}i:1;a:2:{s:10:"vocabulary";s:4:"tags";s:6:"parent";s:1:"0";}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";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:31:"field_data_field_term_reference";a:1:{s:3:"tid";s:24:"field_term_reference_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_term_reference";a:1:{s:3:"tid";s:24:"field_term_reference_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:2:"20";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '21',
+  'field_name' => 'field_text',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"256";}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_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}}}}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";}}s:2:"id";s:2:"21";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '22',
+  'field_name' => 'field_node_entityreference',
+  'type' => 'entityreference',
+  'module' => 'entityreference',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:11:"target_type";s:4:"node";s:7:"handler";s:4:"base";s:16:"handler_settings";a:2:{s:14:"target_bundles";a:1:{s:7:"article";s:7:"article";}s:4:"sort";a:1:{s:4:"type";s:4:"none";}}}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:37:"field_data_field_node_entityreference";a:1:{s:9:"target_id";s:36:"field_node_entityreference_target_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:41:"field_revision_field_node_entityreference";a:1:{s:9:"target_id";s:36:"field_node_entityreference_target_id";}}}}}s:12:"foreign keys";a:1:{s:4:"node";a:2:{s:5:"table";s:4:"node";s:7:"columns";a:1:{s:9:"target_id";s:3:"nid";}}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:2:"id";s:2:"22";}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '23',
+  'field_name' => 'field_user_entityreference',
+  'type' => 'entityreference',
+  'module' => 'entityreference',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:4:"base";s:16:"handler_settings";a:2:{s:14:"target_bundles";a:0:{}s:4:"sort";a:3:{s:4:"type";s:8:"property";s:8:"property";s:7:"created";s:9:"direction";s:4:"DESC";}}}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:37:"field_data_field_user_entityreference";a:1:{s:9:"target_id";s:36:"field_user_entityreference_target_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:41:"field_revision_field_user_entityreference";a:1:{s:9:"target_id";s:36:"field_user_entityreference_target_id";}}}}}s:12:"foreign keys";a:1:{s:5:"users";a:2:{s:5:"table";s:5:"users";s:7:"columns";a:1:{s:9:"target_id";s:3:"uid";}}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:2:"id";s:2:"23";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '24',
+  'field_name' => 'field_term_entityreference',
+  'type' => 'entityreference',
+  'module' => 'entityreference',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:11:"target_type";s:13:"taxonomy_term";s:7:"handler";s:4:"base";s:16:"handler_settings";a:2:{s:14:"target_bundles";a:1:{s:4:"tags";s:4:"tags";}s:4:"sort";a:1:{s:4:"type";s:4:"none";}}}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:37:"field_data_field_term_entityreference";a:1:{s:9:"target_id";s:36:"field_term_entityreference_target_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:41:"field_revision_field_term_entityreference";a:1:{s:9:"target_id";s:36:"field_term_entityreference_target_id";}}}}}s:12:"foreign keys";a:1:{s:18:"taxonomy_term_data";a:2:{s:5:"table";s:18:"taxonomy_term_data";s:7:"columns";a:1:{s:9:"target_id";s:3:"tid";}}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:2:"id";s:2:"24";}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '25',
+  'field_name' => 'field_private_file',
+  'type' => 'file',
+  'module' => 'file',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:13:"display_field";i:0;s:15:"display_default";i:0;s:10:"uri_scheme";s:7:"private";}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:29:"field_data_field_private_file";a:3:{s:3:"fid";s:22:"field_private_file_fid";s:7:"display";s:26:"field_private_file_display";s:11:"description";s:30:"field_private_file_description";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:33:"field_revision_field_private_file";a:3:{s:3:"fid";s:22:"field_private_file_fid";s:7:"display";s:26:"field_private_file_display";s:11:"description";s:30:"field_private_file_description";}}}}}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";}}}s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:2:"id";s:2:"25";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '26',
+  'field_name' => 'field_text_plain',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"255";}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:27:"field_data_field_text_plain";a:2:{s:5:"value";s:22:"field_text_plain_value";s:6:"format";s:23:"field_text_plain_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:31:"field_revision_field_text_plain";a:2:{s:5:"value";s:22:"field_text_plain_value";s:6:"format";s:23:"field_text_plain_format";}}}}}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";}}s:2:"id";s:2:"26";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '27',
+  'field_name' => 'field_text_filtered',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"255";}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:30:"field_data_field_text_filtered";a:2:{s:5:"value";s:25:"field_text_filtered_value";s:6:"format";s:26:"field_text_filtered_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:34:"field_revision_field_text_filtered";a:2:{s:5:"value";s:25:"field_text_filtered_value";s:6:"format";s:26:"field_text_filtered_format";}}}}}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";}}s:2:"id";s:2:"27";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '28',
+  'field_name' => 'field_text_plain_filtered',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"255";}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:36:"field_data_field_text_plain_filtered";a:2:{s:5:"value";s:31:"field_text_plain_filtered_value";s:6:"format";s:32:"field_text_plain_filtered_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:40:"field_revision_field_text_plain_filtered";a:2:{s:5:"value";s:31:"field_text_plain_filtered_value";s:6:"format";s:32:"field_text_plain_filtered_format";}}}}}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";}}s:2:"id";s:2:"28";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '29',
+  'field_name' => 'field_text_long_plain',
+  'type' => 'text_long',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:32:"field_data_field_text_long_plain";a:2:{s:5:"value";s:27:"field_text_long_plain_value";s:6:"format";s:28:"field_text_long_plain_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:36:"field_revision_field_text_long_plain";a:2:{s:5:"value";s:27:"field_text_long_plain_value";s:6:"format";s:28:"field_text_long_plain_format";}}}}}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";}}s:2:"id";s:2:"29";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '30',
+  'field_name' => 'field_text_long_filtered',
+  'type' => 'text_long',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:35:"field_data_field_text_long_filtered";a:2:{s:5:"value";s:30:"field_text_long_filtered_value";s:6:"format";s:31:"field_text_long_filtered_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:39:"field_revision_field_text_long_filtered";a:2:{s:5:"value";s:30:"field_text_long_filtered_value";s:6:"format";s:31:"field_text_long_filtered_format";}}}}}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";}}s:2:"id";s:2:"30";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '31',
+  'field_name' => 'field_text_long_plain_filtered',
+  'type' => 'text_long',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:41:"field_data_field_text_long_plain_filtered";a:2:{s:5:"value";s:36:"field_text_long_plain_filtered_value";s:6:"format";s:37:"field_text_long_plain_filtered_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:45:"field_revision_field_text_long_plain_filtered";a:2:{s:5:"value";s:36:"field_text_long_plain_filtered_value";s:6:"format";s:37:"field_text_long_plain_filtered_format";}}}}}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";}}s:2:"id";s:2:"31";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '32',
+  'field_name' => 'field_text_sum_plain',
+  '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:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:31:"field_data_field_text_sum_plain";a:3:{s:5:"value";s:26:"field_text_sum_plain_value";s:7:"summary";s:28:"field_text_sum_plain_summary";s:6:"format";s:27:"field_text_sum_plain_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_text_sum_plain";a:3:{s:5:"value";s:26:"field_text_sum_plain_value";s:7:"summary";s:28:"field_text_sum_plain_summary";s:6:"format";s:27:"field_text_sum_plain_format";}}}}}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";}}s:2:"id";s:2:"32";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '33',
+  'field_name' => 'field_text_sum_filtered',
+  '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:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:34:"field_data_field_text_sum_filtered";a:3:{s:5:"value";s:29:"field_text_sum_filtered_value";s:7:"summary";s:31:"field_text_sum_filtered_summary";s:6:"format";s:30:"field_text_sum_filtered_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:38:"field_revision_field_text_sum_filtered";a:3:{s:5:"value";s:29:"field_text_sum_filtered_value";s:7:"summary";s:31:"field_text_sum_filtered_summary";s:6:"format";s:30:"field_text_sum_filtered_format";}}}}}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";}}s:2:"id";s:2:"33";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '34',
+  'field_name' => 'field_text_sum_plain_filtered',
+  '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:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a: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:39:"field_data_field_text_sum_plain_filtere";a:3:{s:5:"value";s:34:"field_text_sum_plain_filtere_value";s:7:"summary";s:36:"field_text_sum_plain_filtere_summary";s:6:"format";s:35:"field_text_sum_plain_filtere_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:43:"field_revision_field_text_sum_plain_filtere";a:3:{s:5:"value";s:34:"field_text_sum_plain_filtere_value";s:7:"summary";s:36:"field_text_sum_plain_filtere_summary";s:6:"format";s:35:"field_text_sum_plain_filtere_format";}}}}}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";}}s:2:"id";s:2:"34";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '35',
+  'field_name' => 'field_datetime_without_time',
+  '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";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:6:{s:11:"granularity";a:6:{s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";i:0;s:6:"minute";i:0;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: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:38:"field_data_field_datetime_without_time";a:1:{s:5:"value";s:33:"field_datetime_without_time_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:42:"field_revision_field_datetime_without_time";a:1:{s:5:"value";s:33:"field_datetime_without_time_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:1:"9";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '36',
+  'field_name' => 'field_date_without_time',
+  'type' => 'date',
+  '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";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:6:{s:11:"granularity";a:6:{s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";i:0;s:6:"minute";i:0;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: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:34:"field_data_field_date_without_time";a:1:{s:5:"value";s:29:"field_date_without_time_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:38:"field_revision_field_date_without_time";a:1:{s:5:"value";s:29:"field_date_without_time_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:1:"9";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '37',
+  'field_name' => 'field_float_list',
+  'type' => 'list_float',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:14:"allowed_values";a:2:{s:6:"3.1416";s:2:"Pi";s:6:"6.2832";s:3:"Tau";}s:23:"allowed_values_function";s: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:27:"field_data_field_float_list";a:1:{s:5:"value";s:22:"field_float_list_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:31:"field_revision_field_float_list";a:1:{s:5:"value";s:22:"field_float_list_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"37";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '38',
+  'field_name' => 'field_reference',
+  'type' => 'entityreference',
+  'module' => 'entityreference',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:11:"target_type";s:4:"node";s:7:"handler";s:4:"base";s:16:"handler_settings";a:2:{s:14:"target_bundles";a:1:{s:7:"article";s:7:"article";}s:4:"sort";a:1:{s:4:"type";s:4:"none";}}}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_field_reference";a:1:{s:9:"target_id";s:25:"field_reference_target_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_reference";a:1:{s:9:"target_id";s:25:"field_reference_target_id";}}}}}s:12:"foreign keys";a:1:{s:4:"node";a:2:{s:5:"table";s:4:"node";s:7:"columns";a:1:{s:9:"target_id";s:3:"nid";}}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:2:"id";s:2:"37";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '39',
+  'field_name' => 'field_reference_2',
+  'type' => 'entityreference',
+  'module' => 'entityreference',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:11:"target_type";s:4:"node";s:7:"handler";s:4:"base";s:16:"handler_settings";a:2:{s:14:"target_bundles";a:2:{s:7:"article";s:7:"article";s:5:"forum";s:5:"forum";}s:4:"sort";a:1:{s:4:"type";s:4:"none";}}}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:28:"field_data_field_reference_2";a:1:{s:9:"target_id";s:27:"field_reference_2_target_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:32:"field_revision_field_reference_2";a:1:{s:9:"target_id";s:27:"field_reference_2_target_id";}}}}}s:12:"foreign keys";a:1:{s:4:"node";a:2:{s:5:"table";s:4:"node";s:7:"columns";a:1:{s:9:"target_id";s:3:"nid";}}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:2:"id";s:2:"39";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '40',
+  'field_name' => 'title_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' => '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' => '42',
+  'field_name' => 'name_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' => '43',
+  'field_name' => 'description_field',
+  '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:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:1:{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' => '44',
+  'field_name' => 'field_vocab_localize',
+  '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:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocablocalized";s:6:"parent";s:1:"0";}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";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:31:"field_data_field_vocab_localize";a:1:{s:3:"tid";s:24:"field_vocab_localize_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_vocab_localize";a:1:{s:3:"tid";s:24:"field_vocab_localize_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:2:"44";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '45',
+  'field_name' => 'field_vocab_translate',
+  '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:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabtranslate";s:6:"parent";s:1:"0";}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";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:32:"field_data_field_vocab_translate";a:1:{s:3:"tid";s:25:"field_vocab_translate_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:36:"field_revision_field_vocab_translate";a:1:{s:3:"tid";s:25:"field_vocab_translate_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:2:"45";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '46',
+  'field_name' => 'field_vocab_fixed',
+  '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:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:10:"vocabfixed";s:6:"parent";s:1:"0";}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";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:28:"field_data_field_vocab_fixed";a:1:{s:3:"tid";s:21:"field_vocab_fixed_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:32:"field_revision_field_vocab_fixed";a:1:{s:3:"tid";s:21:"field_vocab_fixed_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:2:"46";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '48',
+  'field_name' => 'field_color',
+  'type' => 'list_text',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:3:{i:0;s:5:"Green";i:1;s:5:"Black";i:2;s:5:"White";}s:23:"allowed_values_function";s:0:"";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_color";a:1:{s:5:"value";s:17:"field_color_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:26:"field_revision_field_color";a:1:{s:5:"value";s:17:"field_color_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"48";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '49',
+  'field_name' => 'field_rating',
+  'type' => 'list_text',
+  'module' => 'list',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:3:{i:1;s:4:"High";i:2;s:6:"Medium";i:3;s:3:"Low";}s:23:"allowed_values_function";s:0:"";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:23:"field_data_field_rating";a:1:{s:5:"value";s:18:"field_rating_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:27:"field_revision_field_rating";a:1:{s:5:"value";s:18:"field_rating_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"49";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '50',
+  'field_name' => 'field_training',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";i:1;s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:10:"max_length";s:3:"255";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:25:"field_data_field_training";a:2:{s:5:"value";s:20:"field_training_value";s:6:"format";s:21:"field_training_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:29:"field_revision_field_training";a:2:{s:5:"value";s:20:"field_training_value";s:6:"format";s:21:"field_training_format";}}}}}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";}}s:2:"id";s:2:"50";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '51',
+  'field_name' => 'field_sector',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"255";}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:23:"field_data_field_sector";a:2:{s:5:"value";s:18:"field_sector_value";s:6:"format";s:19:"field_sector_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:27:"field_revision_field_sector";a:2:{s:5:"value";s:18:"field_sector_value";s:6:"format";s:19:"field_sector_format";}}}}}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";}}s:2:"id";s:2:"51";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '52',
+  'field_name' => 'field_chancellor',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"255";}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:27:"field_data_field_chancellor";a:2:{s:5:"value";s:22:"field_chancellor_value";s:6:"format";s:23:"field_chancellor_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:31:"field_revision_field_chancellor";a:2:{s:5:"value";s:22:"field_chancellor_value";s:6:"format";s:23:"field_chancellor_format";}}}}}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";}}s:2:"id";s:2:"52";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '53',
+  'field_name' => 'field_tree',
+  'type' => 'text',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:7:{s:12:"translatable";i:1;s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:10:"max_length";s:3:"255";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:21:"field_data_field_tree";a:2:{s:5:"value";s:16:"field_tree_value";s:6:"format";s:17:"field_tree_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_tree";a:2:{s:5:"value";s:16:"field_tree_value";s:6:"format";s:17:"field_tree_format";}}}}}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";}}s:2:"id";s:1:"5";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '54',
+  'field_name' => 'field_termplain',
+  '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:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:4:"tags";s:6:"parent";s:1:"0";}}s:21:"options_list_callback";s:29:"title_taxonomy_allowed_values";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:26:"field_data_field_termplain";a:1:{s:3:"tid";s:19:"field_termplain_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_termplain";a:1:{s:3:"tid";s:19:"field_termplain_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:2:"55";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '55',
+  'field_name' => 'field_termrss',
+  '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:12:"translatable";i:0;s:12:"entity_types";a:0:{}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";s:1:"0";}}s:21:"options_list_callback";s:29:"title_taxonomy_allowed_values";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:24:"field_data_field_termrss";a:1:{s:3:"tid";s:17:"field_termrss_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:28:"field_revision_field_termrss";a:1:{s:3:"tid";s:17:"field_termrss_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:2:"56";}',
+  'cardinality' => '1',
+  'translatable' => '1',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '56',
+  'field_name' => 'field_node_reference',
+  'type' => 'node_reference',
+  'module' => 'node_reference',
+  '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:3:{s:19:"referenceable_types";a:6:{s:7:"article";s:7:"article";s:4:"page";i:0;s:4:"blog";i:0;s:4:"book";i:0;s:5:"forum";i:0;s:17:"test_content_type";i:0;}s:4:"view";a:3:{s:9:"view_name";s:0:"";s:12:"display_name";s:0:"";s:4:"args";a:0:{}}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:31:"field_data_field_node_reference";a:1:{s:3:"nid";s:24:"field_node_reference_nid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_node_reference";a:1:{s:3:"nid";s:24:"field_node_reference_nid";}}}}}s:12:"foreign keys";a:1:{s:3:"nid";a:2:{s:5:"table";s:4:"node";s:7:"columns";a:1:{s:3:"nid";s:3:"nid";}}}s:7:"indexes";a:1:{s:3:"nid";a:1:{i:0;s:3:"nid";}}s:2:"id";s:2:"50";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '57',
+  'field_name' => 'field_user_reference',
+  'type' => 'user_reference',
+  'module' => 'user_reference',
+  '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:4:{s:19:"referenceable_roles";a:2:{i:2;s:1:"2";i:3;i:0;}s:20:"referenceable_status";a:2:{i:1;s:1:"1";i:0;i:0;}s:4:"view";a:3:{s:9:"view_name";s:0:"";s:12:"display_name";s:0:"";s:4:"args";a:0:{}}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:31:"field_data_field_user_reference";a:1:{s:3:"uid";s:24:"field_user_reference_uid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_user_reference";a:1:{s:3:"uid";s:24:"field_user_reference_uid";}}}}}s:12:"foreign keys";a:1:{s:3:"uid";a:2:{s:5:"table";s:5:"users";s:7:"columns";a:1:{s:3:"uid";s:3:"uid";}}}s:7:"indexes";a:1:{s:3:"uid";a:1:{i:0;s:3:"uid";}}s:2:"id";s:2:"51";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '58',
+  'field_name' => 'field_telephone',
+  'type' => 'telephone',
+  'module' => 'telephone',
+  '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:1:{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:26:"field_data_field_telephone";a:1:{s:5:"value";s:21:"field_telephone_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_telephone";a:1:{s:5:"value";s:21:"field_telephone_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"58";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '59',
+  'field_name' => 'field_file_mfw',
+  'type' => 'file',
+  'module' => 'file',
+  '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:4:{s:13:"display_field";i:0;s:15:"display_default";i:0;s:10:"uri_scheme";s:6:"public";s:23:"entity_translation_sync";a:1:{i:0;s:3:"fid";}}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:25:"field_data_field_file_mfw";a:3:{s:3:"fid";s:18:"field_file_mfw_fid";s:7:"display";s:22:"field_file_mfw_display";s:11:"description";s:26:"field_file_mfw_description";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:29:"field_revision_field_file_mfw";a:3:{s:3:"fid";s:18:"field_file_mfw_fid";s:7:"display";s:22:"field_file_mfw_display";s:11:"description";s:26:"field_file_mfw_description";}}}}}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";}}}s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:2:"id";s:2:"56";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '60',
+  'field_name' => 'field_image_miw',
+  'type' => 'image',
+  'module' => 'image',
+  '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:3:{s:10:"uri_scheme";s:6:"public";s:13:"default_image";i:0;s:23:"entity_translation_sync";a:1:{i:0;s:3:"fid";}}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_field_image_miw";a:5:{s:3:"fid";s:19:"field_image_miw_fid";s:3:"alt";s:19:"field_image_miw_alt";s:5:"title";s:21:"field_image_miw_title";s:5:"width";s:21:"field_image_miw_width";s:6:"height";s:22:"field_image_miw_height";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_field_image_miw";a:5:{s:3:"fid";s:19:"field_image_miw_fid";s:3:"alt";s:19:"field_image_miw_alt";s:5:"title";s:21:"field_image_miw_title";s:5:"width";s:21:"field_image_miw_width";s:6:"height";s:22:"field_image_miw_height";}}}}}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";}}}s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:2:"id";s:2:"57";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '61',
+  'field_name' => 'field_checkbox',
+  'type' => 'list_boolean',
+  'module' => 'list',
+  '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:3:{s:14:"allowed_values";a:2:{i:0;s:4:"Stop";i:1;s:2:"Go";}s:23:"allowed_values_function";s:0:"";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:25:"field_data_field_checkbox";a:1:{s:5:"value";s:20:"field_checkbox_value";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:29:"field_revision_field_checkbox";a:1:{s:5:"value";s:20:"field_checkbox_value";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:2:"id";s:2:"53";}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  '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:0:{}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' => '8',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  '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: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' => '9',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_book',
+  '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' => '10',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'book',
+  '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' => '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' => '14',
+  '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";s:1:"0";s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '16',
+  'field_id' => '6',
+  'field_name' => 'field_boolean',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:7:"Boolean";s:6:"widget";a:5:{s:6:"weight";s:1:"1";s:4:"type";s:13:"options_onoff";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:1:{s:13:"display_label";i:1;}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:6:"weight";s:1:"0";s:8:"settings";a:0:{}s:6:"module";s:4:"list";}}s:8:"required";i:0;s:11:"description";s:19:"Some helpful text. ";s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";i:0;}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '17',
+  'field_id' => '7',
+  'field_name' => 'field_email',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:5:"Email";s:6:"widget";a:5:{s:6:"weight";s:1:"4";s:4:"type";s:15:"email_textfield";s:6:"module";s:5:"email";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:13:"email_default";s:6:"weight";s:1:"1";s:8:"settings";a:0:{}s:6:"module";s:5:"email";}}s:8:"required";i:0;s:11:"description";s:20:"The email help text.";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:19:"default@example.com";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '18',
+  'field_id' => '8',
+  'field_name' => 'field_phone',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:5:"Phone";s:6:"widget";a:5:{s:6:"weight";s:1:"6";s:4:"type";s:15:"phone_textfield";s:6:"module";s:5:"phone";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:6:{s:18:"phone_country_code";i:1;s:26:"phone_default_country_code";s:1:"1";s:20:"phone_int_max_length";i:15;s:18:"ca_phone_separator";s:1:"-";s:20:"ca_phone_parentheses";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:5:"phone";s:6:"weight";s:1:"2";s:8:"settings";a:0:{}s:6:"module";s:5:"phone";}}s:8:"required";i:1;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '19',
+  'field_id' => '9',
+  'field_name' => 'field_date',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:4:"Date";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:11:"date_select";s:6:"module";s:4:"date";s:6:"active";i:1;s:8:"settings";a:6:{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";s:2:"15";s:14:"label_position";s:5:"above";s:10:"text_parts";a:0:{}}}s:8:"settings";a:5:{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:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"date_default";s:6:"weight";s:1:"3";s:8:"settings";a:5:{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:6:"module";s:4:"date";}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '20',
+  'field_id' => '10',
+  'field_name' => 'field_date_with_end_time',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:18:"Date With End Time";s:6:"widget";a:5:{s:6:"weight";s:1:"3";s:4:"type";s:9:"date_text";s:6:"module";s:4:"date";s:6:"active";i:1;s:8:"settings";a:6:{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:15;s:14:"label_position";s:5:"above";s:10:"text_parts";a:0:{}}}s:8:"settings";a:5:{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:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"date_default";s:6:"weight";s:1:"4";s:8:"settings";a:5:{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:6:"module";s:4:"date";}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '21',
+  'field_id' => '11',
+  'field_name' => 'field_file',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:4:"File";s:6:"widget";a:5:{s:6:"weight";s:1:"5";s:4:"type";s:12:"file_generic";s:6:"module";s:4:"file";s:6:"active";i:1;s:8:"settings";a:1:{s:18:"progress_indicator";s:8:"throbber";}}s:8:"settings";a:5:{s:14:"file_directory";s:0:"";s:15:"file_extensions";s:15:"txt pdf ods odf";s:12:"max_filesize";s:5:"10 MB";s:17:"description_field";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"file_default";s:6:"weight";s:1:"5";s:8:"settings";a:0:{}s:6:"module";s:4:"file";}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '22',
+  'field_id' => '12',
+  'field_name' => 'field_float',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:5:"Float";s:6:"widget";a:5:{s:6:"weight";s:1:"7";s:4:"type";s:6:"number";s:6:"module";s:6:"number";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:5:{s:3:"min";s:6:"-3.756";s:3:"max";s:5:"18.56";s:6:"prefix";s:12:"Prefix value";s:6:"suffix";s:12:"Suffix value";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"number_decimal";s:6:"weight";s:1:"6";s:8:"settings";a:4:{s:18:"thousand_separator";s:1:" ";s:17:"decimal_separator";s:1:".";s:5:"scale";i:2;s:13:"prefix_suffix";b:1;}s:6:"module";s:6:"number";}}s:8:"required";i:0;s:11:"description";s:22:"Some floaty help text.";s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:3:"1.2";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '23',
+  'field_id' => '13',
+  'field_name' => 'field_images',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:6:"Images";s:6:"widget";a:5:{s:6:"weight";s:1:"8";s:4:"type";s:11:"image_image";s:6:"module";s:5:"image";s:6:"active";i:1;s:8:"settings";a:2:{s:18:"progress_indicator";s:8:"throbber";s:19:"preview_image_style";s:9:"thumbnail";}}s:8:"settings";a:9:{s:14:"file_directory";s:0:"";s:15:"file_extensions";s:16:"png gif jpg jpeg";s:12:"max_filesize";s:5:"15 MB";s:14:"max_resolution";s:9:"1000x1000";s:14:"min_resolution";s:3:"1x1";s:9:"alt_field";i:1;s:11:"title_field";i:1;s:13:"default_image";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:5:"image";s:6:"weight";s:1:"7";s:8:"settings";a:2:{s:11:"image_style";s:0:"";s:10:"image_link";s:0:"";}s:6:"module";s:5:"image";}}s:8:"required";i:1;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '24',
+  'field_id' => '14',
+  'field_name' => 'field_integer',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:7:"Integer";s:6:"widget";a:5:{s:6:"weight";s:1:"9";s:4:"type";s:6:"number";s:6:"module";s:6:"number";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:5:{s:3:"min";s:1:"1";s:3:"max";s:2:"25";s:6:"prefix";s:3:"abc";s:6:"suffix";s:3:"xyz";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"number_integer";s:6:"weight";s:1:"8";s:8:"settings";a:4:{s:18:"thousand_separator";s:1:" ";s:17:"decimal_separator";s:1:".";s:5:"scale";i:0;s:13:"prefix_suffix";b:1;}s:6:"module";s:6:"number";}}s:8:"required";i:1;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '25',
+  'field_id' => '15',
+  'field_name' => 'field_link',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:4:"Link";s:6:"widget";a:5:{s:6:"weight";s:2:"10";s:4:"type";s:10:"link_field";s:6:"module";s:4:"link";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:12:{s:12:"absolute_url";i:1;s:12:"validate_url";i:1;s:3:"url";i:0;s:5:"title";s:8:"optional";s:11:"title_value";s:19:"Unused Static Title";s:27:"title_label_use_field_label";i:0;s:15:"title_maxlength";s:3:"128";s:7:"display";a:1:{s:10:"url_cutoff";s:2:"81";}s:10:"attributes";a:6:{s:6:"target";s:6:"_blank";s:3:"rel";s:8:"nofollow";s:18:"configurable_class";i:0;s:5:"class";s:7:"classes";s:18:"configurable_title";i:1;s:5:"title";s:0:"";}s:10:"rel_remove";s:19:"rel_remove_external";s:13:"enable_tokens";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"link_default";s:6:"weight";s:1:"9";s:8:"settings";a:0:{}s:6:"module";s:4:"link";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '26',
+  'field_id' => '16',
+  'field_name' => 'field_text_list',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:9:"Text List";s:6:"widget";a:5:{s:6:"weight";s:2:"11";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:6:"weight";s:2:"10";s:8:"settings";a:0:{}s:6:"module";s:4:"list";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '27',
+  'field_id' => '17',
+  'field_name' => 'field_integer_list',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:12:"Integer List";s:6:"widget";a:5:{s:6:"weight";s:2:"12";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:6:"weight";s:2:"11";s:8:"settings";a:0:{}s:6:"module";s:4:"list";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '28',
+  'field_id' => '18',
+  'field_name' => 'field_long_text',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:9:"Long text";s:6:"widget";a:5:{s:6:"weight";s:2:"13";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"19";s:12:"summary_rows";i:5;}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"1";s:15:"display_summary";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:6:"weight";s:2:"12";s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '30',
+  'field_id' => '20',
+  'field_name' => 'field_term_reference',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:14:"Term Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"14";s:4:"type";s:21:"taxonomy_autocomplete";s:6:"module";s:8:"taxonomy";s:6:"active";i:0;s:8:"settings";a:2:{s:4:"size";i:60;s:17:"autocomplete_path";s:21:"taxonomy/autocomplete";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:4:{s:5:"label";s:5:"above";s:4:"type";s:6:"hidden";s:6:"weight";s:2:"13";s:8:"settings";a:0:{}}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '31',
+  'field_id' => '21',
+  'field_name' => 'field_text',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:4:"Text";s:6:"widget";a:5:{s:6:"weight";s:2:"15";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"55";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:4:{s:5:"label";s:5:"above";s:4:"type";s:6:"hidden";s:6:"weight";s:2:"14";s:8:"settings";a:0:{}}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '32',
+  'field_id' => '14',
+  'field_name' => 'field_integer',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'data' => 'a:7:{s:5:"label";s:7:"Integer";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:6:"number";s:6:"module";s:6:"number";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:5:{s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"number_integer";s:8:"settings";a:4:{s:18:"thousand_separator";s:1:" ";s:17:"decimal_separator";s:1:".";s:5:"scale";i:0;s:13:"prefix_suffix";b:1;}s:6:"module";s:6:"number";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '33',
+  'field_id' => '11',
+  'field_name' => 'field_file',
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'data' => 'a:6:{s:5:"label";s:4:"File";s:6:"widget";a:5:{s:6:"weight";s:1:"8";s:4:"type";s:12:"file_generic";s:6:"module";s:4:"file";s:6:"active";i:1;s:8:"settings";a:1:{s:18:"progress_indicator";s:8:"throbber";}}s:8:"settings";a:5:{s:14:"file_directory";s:0:"";s:15:"file_extensions";s:3:"txt";s:12:"max_filesize";s:0:"";s:17:"description_field";i:0;s:18:"user_register_form";i:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"file_default";s:8:"settings";a:0:{}s:6:"module";s:4:"file";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '34',
+  'field_id' => '15',
+  'field_name' => 'field_link',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:4:"Link";s:6:"widget";a:5:{s:6:"weight";s:2:"10";s:4:"type";s:10:"link_field";s:6:"module";s:4:"link";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:13:{s:12:"absolute_url";i:1;s:12:"validate_url";i:1;s:3:"url";i:0;s:5:"title";s:8:"disabled";s:11:"title_value";s:19:"Unused Static Title";s:27:"title_label_use_field_label";i:0;s:15:"title_maxlength";s:3:"128";s:7:"display";a:1:{s:10:"url_cutoff";s:2:"81";}s:10:"attributes";a:6:{s:6:"target";s:6:"_blank";s:3:"rel";s:8:"nofollow";s:18:"configurable_class";i:0;s:5:"class";s:7:"classes";s:18:"configurable_title";i:1;s:5:"title";s:0:"";}s:10:"rel_remove";s:19:"rel_remove_external";s:13:"enable_tokens";i:1;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:"link_default";s:6:"weight";s:1:"9";s:8:"settings";a:0:{}s:6:"module";s:4:"link";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '35',
+  'field_id' => '14',
+  'field_name' => 'field_integer',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'data' => 'a:7:{s:5:"label";s:7:"Integer";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:6:"number";s:6:"module";s:6:"number";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:5:{s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"number_integer";s:8:"settings";a:4:{s:18:"thousand_separator";s:0:"";s:17:"decimal_separator";s:1:".";s:5:"scale";i:0;s:13:"prefix_suffix";b:1;}s:6:"module";s:6:"number";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '36',
+  'field_id' => '14',
+  'field_name' => 'field_integer',
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'data' => 'a:7:{s:5:"label";s:7:"Integer";s:6:"widget";a:5:{s:6:"weight";s:1:"9";s:4:"type";s:6:"number";s:6:"module";s:6:"number";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:5:{s:3:"min";s:1:"1";s:3:"max";s:2:"25";s:6:"prefix";s:3:"abc";s:6:"suffix";s:3:"xyz";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"number_integer";s:6:"weight";s:1:"8";s:8:"settings";a:4:{s:18:"thousand_separator";s:1:" ";s:17:"decimal_separator";s:1:".";s:5:"scale";i:0;s:13:"prefix_suffix";b:1;}s:6:"module";s:6:"number";}}s:8:"required";i:1;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '37',
+  'field_id' => '15',
+  'field_name' => 'field_link',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:7:{s:5:"label";s:4:"Link";s:6:"widget";a:5:{s:6:"weight";s:2:"10";s:4:"type";s:10:"link_field";s:6:"module";s:4:"link";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:14:{s:12:"absolute_url";i:1;s:12:"validate_url";i:1;s:3:"url";i:0;s:5:"title";s:8:"required";s:11:"title_value";s:19:"Unused Static Title";s:20:"title_allowed_values";s:0:"";s:27:"title_label_use_field_label";i:0;s:15:"title_maxlength";s:3:"128";s:7:"display";a:1:{s:10:"url_cutoff";s:2:"81";}s:10:"attributes";a:6:{s:6:"target";s:6:"_blank";s:3:"rel";s:8:"nofollow";s:18:"configurable_class";i:0;s:5:"class";s:7:"classes";s:18:"configurable_title";i:1;s:5:"title";s:0:"";}s:10:"rel_remove";s:19:"rel_remove_external";s:13:"enable_tokens";i:1;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:"link_default";s:6:"weight";s:1:"9";s:8:"settings";a:0:{}s:6:"module";s:4:"link";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";a:1:{i:0;a:3:{s:5:"title";s:6:"Drupal";s:3:"url";s:23:"https://www.drupal.org/";s:10:"attributes";a:1:{s:5:"title";s:14:"Home - Drupal ";}}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '38',
+  'field_id' => '22',
+  'field_name' => 'field_node_entityreference',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:21:"Node Entity Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"16";s:4:"type";s:28:"entityreference_autocomplete";s:6:"module";s:15:"entityreference";s:6:"active";i:1;s:8:"settings";a:3:{s:14:"match_operator";s:8:"CONTAINS";s:4:"size";s:2:"60";s:4:"path";s:0:"";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:21:"entityreference_label";s:8:"settings";a:1:{s:4:"link";b:0;}s:6:"module";s:15:"entityreference";s:6:"weight";i:15;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '39',
+  'field_id' => '23',
+  'field_name' => 'field_user_entityreference',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:21:"User Entity Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"17";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:21:"entityreference_label";s:8:"settings";a:1:{s:4:"link";b:0;}s:6:"module";s:15:"entityreference";s:6:"weight";i:16;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '40',
+  'field_id' => '24',
+  'field_name' => 'field_term_entityreference',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:21:"Term Entity Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"18";s:4:"type";s:33:"entityreference_autocomplete_tags";s:6:"module";s:15:"entityreference";s:6:"active";i:1;s:8:"settings";a:3:{s:14:"match_operator";s:8:"CONTAINS";s:4:"size";s:2:"60";s:4:"path";s:0:"";}}s:8:"settings";a:2:{s:9:"behaviors";a:1:{s:14:"taxonomy-index";a:1:{s:6:"status";b:1;}}s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:21:"entityreference_label";s:8:"settings";a:1:{s:4:"link";b:0;}s:6:"module";s:15:"entityreference";s:6:"weight";i:17;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '41',
+  'field_id' => '20',
+  'field_name' => 'field_term_reference',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'data' => 'a:7:{s:5:"label";s:14:"Term Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"14";s:4:"type";s:21:"taxonomy_autocomplete";s:6:"module";s:8:"taxonomy";s:6:"active";i:0;s:8:"settings";a:2:{s:4:"size";i:60;s:17:"autocomplete_path";s:21:"taxonomy/autocomplete";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:4:{s:5:"label";s:5:"above";s:4:"type";s:6:"hidden";s:6:"weight";s:2:"13";s:8:"settings";a:0:{}}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '42',
+  'field_id' => '25',
+  'field_name' => 'field_private_file',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:12:"Private file";s:6:"widget";a:5:{s:6:"weight";s:2:"19";s:4:"type";s:12:"file_generic";s:6:"module";s:4:"file";s:6:"active";i:1;s:8:"settings";a:1:{s:18:"progress_indicator";s:8:"throbber";}}s:8:"settings";a:5:{s:14:"file_directory";s:0:"";s:15:"file_extensions";s:3:"txt";s:12:"max_filesize";s:0:"";s:17:"description_field";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"file_default";s:8:"settings";a:0:{}s:6:"module";s:4:"file";s:6:"weight";i:18;}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '43',
+  'field_id' => '26',
+  'field_name' => 'field_text_plain',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:10:"Text plain";s:6:"widget";a:5:{s:6:"weight";s:2:"11";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:11;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '44',
+  'field_id' => '27',
+  'field_name' => 'field_text_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:13:"Text filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"12";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"1";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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:12;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '45',
+  'field_id' => '28',
+  'field_name' => 'field_text_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:23:"Text plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"13";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:13;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '46',
+  'field_id' => '29',
+  'field_name' => 'field_text_long_plain',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:15:"Text long plain";s:6:"widget";a:5:{s:6:"weight";s:2:"14";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:14;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '47',
+  'field_id' => '30',
+  'field_name' => 'field_text_long_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:18:"Text long filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"15";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"1";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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:15;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '48',
+  'field_id' => '31',
+  'field_name' => 'field_text_long_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:28:"Text long plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"16";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:16;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '49',
+  'field_id' => '32',
+  'field_name' => 'field_text_sum_plain',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:18:"Text summary plain";s:6:"widget";a:5:{s:6:"weight";s:2:"17";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:4:{s:15:"text_processing";s:1:"0";s:15:"display_summary";i: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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:17;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '50',
+  'field_id' => '33',
+  'field_name' => 'field_text_sum_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:21:"Text summary filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"18";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:4:{s:15:"text_processing";s:1:"1";s:15:"display_summary";i: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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:18;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '51',
+  'field_id' => '34',
+  'field_name' => 'field_text_sum_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:31:"Text summary plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"19";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:4:{s:15:"text_processing";s:1:"0";s:15:"display_summary";i: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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:19;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '52',
+  'field_id' => '26',
+  'field_name' => 'field_text_plain',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:10:"Text plain";s:6:"widget";a:5:{s:6:"weight";s:2:"-2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '53',
+  'field_id' => '27',
+  'field_name' => 'field_text_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:13:"Text filtered";s:6:"widget";a:5:{s:6:"weight";s:1:"0";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"1";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:2;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '54',
+  'field_id' => '28',
+  'field_name' => 'field_text_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:23:"Text plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"1";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:3;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '55',
+  'field_id' => '29',
+  'field_name' => 'field_text_long_plain',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:15:"Text long plain";s:6:"widget";a:5:{s:6:"weight";s:1:"4";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:4;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '56',
+  'field_id' => '30',
+  'field_name' => 'field_text_long_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:18:"Text long filtered";s:6:"widget";a:5:{s:6:"weight";s:1:"6";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"1";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:5;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '57',
+  'field_id' => '31',
+  'field_name' => 'field_text_long_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:28:"Text long plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:1:"8";s:4:"type";s:13:"text_textarea";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"rows";s:1:"5";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"1";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:6;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '58',
+  'field_id' => '32',
+  'field_name' => 'field_text_sum_plain',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:18:"Text summary plain";s:6:"widget";a:5:{s:6:"weight";s:2:"10";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"0";s:15:"display_summary";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:7;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '59',
+  'field_id' => '33',
+  'field_name' => 'field_text_sum_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:21:"Text summary filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"12";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"1";s:15:"display_summary";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:8;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '60',
+  'field_id' => '34',
+  'field_name' => 'field_text_sum_plain_filtered',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:7:{s:5:"label";s:31:"Text summary plain and filtered";s:6:"widget";a:5:{s:6:"weight";s:2:"14";s:4:"type";s:26:"text_textarea_with_summary";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:2:{s:4:"rows";s:2:"20";s:12:"summary_rows";i:5;}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"1";s:15:"display_summary";i:0;s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:9;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '61',
+  'field_id' => '35',
+  'field_name' => 'field_datetime_without_time',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:21:"Datetime without time";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:11:"date_select";s:6:"module";s:4:"date";s:6:"active";i:1;s:8:"settings";a:6:{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";s:2:"15";s:14:"label_position";s:5:"above";s:10:"text_parts";a:0:{}}}s:8:"settings";a:5:{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:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"date_default";s:6:"weight";s:1:"3";s:8:"settings";a:5:{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:6:"module";s:4:"date";}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '62',
+  'field_id' => '36',
+  'field_name' => 'field_date_without_time',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:17:"Date without time";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:11:"date_select";s:6:"module";s:4:"date";s:6:"active";i:1;s:8:"settings";a:6:{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";s:2:"15";s:14:"label_position";s:5:"above";s:10:"text_parts";a:0:{}}}s:8:"settings";a:5:{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:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"date_default";s:6:"weight";s:1:"3";s:8:"settings";a:5:{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:6:"module";s:4:"date";}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '63',
+  'field_id' => '37',
+  'field_name' => 'field_float_list',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:10:"Float List";s:6:"widget";a:5:{s:6:"weight";s:2:"20";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:19;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '64',
+  'field_id' => '38',
+  'field_name' => 'field_reference',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:9:"Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"20";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:21:"entityreference_label";s:6:"weight";s:2:"20";s:8:"settings";a:2:{s:13:"bypass_access";i:0;s:4:"link";i:1;}s:6:"module";s:15:"entityreference";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '65',
+  'field_id' => '39',
+  'field_name' => 'field_reference_2',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:6:{s:5:"label";s:11:"Reference 2";s:6:"widget";a:4:{s:4:"type";s:33:"entityreference_autocomplete_tags";s:6:"weight";s:2:"21";s:8:"settings";a:3:{s:14:"match_operator";s:8:"CONTAINS";s:4:"size";i:60;s:4:"path";s:0:"";}s:6:"module";s:15:"entityreference";}s:8:"settings";a:2:{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:27:"entityreference_entity_view";s:6:"weight";s:2:"21";s:8:"settings";a:3:{s:9:"view_mode";s:7:"default";s:5:"links";b:1;s:20:"use_content_language";b:1;}s:6:"module";s:15:"entityreference";}}s:8:"required";b:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '66',
+  'field_id' => '38',
+  'field_name' => 'field_reference',
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'data' => 'a:7:{s:5:"label";s:9:"Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"11";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{s:18:"user_register_form";i: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:21:"entityreference_label";s:8:"settings";a:2:{s:4:"link";b:0;s:13:"bypass_access";b:0;}s:6:"module";s:15:"entityreference";s:6:"weight";i:9;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '67',
+  'field_id' => '40',
+  'field_name' => 'title_field',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:6:{s:5:"label";s:5:"Title";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:20;}}}',
+  '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' => '69',
+  'field_id' => '42',
+  'field_name' => 'name_field',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'data' => 'a:6:{s:5:"label";s:4:"Name";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:14;}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '70',
+  'field_id' => '43',
+  'field_name' => 'description_field',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'data' => 'a:6:{s:8:"required";b:0;s:5:"label";s:11:"Description";s:11:"description";s:0:"";s:8:"settings";a:5:{s:15:"text_processing";i:1;s:10:"hide_label";a:2:{s:4:"page";b:0;s:6:"entity";b:0;}s:15:"display_summary";i: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:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}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:15;}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '71',
+  'field_id' => '41',
+  'field_name' => 'subject_field',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  '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' => '72',
+  'field_id' => '44',
+  'field_name' => 'field_vocab_localize',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:14:"vocab_localize";s:6:"widget";a:5:{s:6:"weight";s:2:"22";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:33:"i18n_taxonomy_term_reference_link";s:8:"settings";a:0:{}s:6:"module";s:13:"i18n_taxonomy";s:6:"weight";i:22;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '73',
+  'field_id' => '45',
+  'field_name' => 'field_vocab_translate',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:15:"vocab_translate";s:6:"widget";a:5:{s:6:"weight";s:2:"23";s:4:"type";s:21:"taxonomy_autocomplete";s:6:"module";s:8:"taxonomy";s:6:"active";i:0;s:8:"settings";a:2:{s:4:"size";i:60;s:17:"autocomplete_path";s:21:"taxonomy/autocomplete";}}s:8:"settings";a:3:{s:50:"entity_translation_taxonomy_autocomplete_translate";b: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:33:"i18n_taxonomy_term_reference_link";s:8:"settings";a:0:{}s:6:"module";s:13:"i18n_taxonomy";s:6:"weight";i:23;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '74',
+  'field_id' => '46',
+  'field_name' => 'field_vocab_fixed',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:11:"vocab_fixed";s:6:"widget";a:5:{s:6:"weight";s:2:"24";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:33:"i18n_taxonomy_term_reference_link";s:8:"settings";a:0:{}s:6:"module";s:13:"i18n_taxonomy";s:6:"weight";i:24;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '76',
+  'field_id' => '48',
+  'field_name' => 'field_color',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:7:{s:5:"label";s:5:"Color";s:6:"widget";a:5:{s:6:"weight";s:2:"11";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:10;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '77',
+  'field_id' => '49',
+  'field_name' => 'field_rating',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:7:{s:5:"label";s:6:"Rating";s:6:"widget";a:5:{s:6:"weight";s:2:"12";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:11;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '78',
+  'field_id' => '6',
+  'field_name' => 'field_boolean',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:6:{s:5:"label";s:7:"Boolean";s:6:"widget";a:4:{s:4:"type";s:13:"options_onoff";s:6:"weight";s:2:"14";s:8:"settings";a:1:{s:13:"display_label";i:0;}s:6:"module";s:7:"options";}s:8:"settings";a:2:{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:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:12;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '79',
+  'field_id' => '50',
+  'field_name' => 'field_training',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabfixed',
+  'data' => 'a:7:{s:5:"label";s:8:"Training";s:6:"widget";a:5:{s:6:"weight";s:1:"1";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '80',
+  'field_id' => '51',
+  'field_name' => 'field_sector',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocablocalized',
+  'data' => 'a:7:{s:5:"label";s:6:"Sector";s:6:"widget";a:5:{s:6:"weight";s:1:"1";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '81',
+  'field_id' => '52',
+  'field_name' => 'field_chancellor',
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'data' => 'a:7:{s:5:"label";s:10:"Chancellor";s:6:"widget";a:5:{s:6:"weight";s:1:"1";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '82',
+  'field_id' => '53',
+  'field_name' => 'field_tree',
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'data' => 'a:7:{s:5:"label";s:4:"tree";s:6:"widget";a:5:{s:6:"weight";s:2:"-3";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:3:{s:15:"text_processing";s:1:"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:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '83',
+  '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' => '84',
+  'field_id' => '54',
+  'field_name' => 'field_termplain',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:6:{s:5:"label";s:9:"termplain";s:6:"widget";a:4:{s:4:"type";s:15:"options_buttons";s:6:"weight";s:2:"15";s:8:"settings";a:0:{}s:6:"module";s:7:"options";}s:8:"settings";a:2:{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:29:"taxonomy_term_reference_plain";s:6:"weight";s:2:"13";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}}s:8:"required";b:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '85',
+  'field_id' => '55',
+  'field_name' => 'field_termrss',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:7:{s:5:"label";s:7:"termrss";s:6:"widget";a:5:{s:6:"weight";s:2:"16";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:36:"taxonomy_term_reference_rss_category";s:6:"weight";s:2:"14";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '86',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_a_thirty_two_character_type_name',
+  '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' => '87',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'a_thirty_two_character_type_name',
+  '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' => '88',
+  'field_id' => '56',
+  'field_name' => 'field_node_reference',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:14:"Node Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"25";s:4:"type";s:27:"node_reference_autocomplete";s:6:"module";s:14:"node_reference";s:6:"active";i:1;s:8:"settings";a:3:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:17:"autocomplete_path";s:27:"node_reference/autocomplete";}}s:8:"settings";a:2:{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:22:"node_reference_default";s:8:"settings";a:0:{}s:6:"module";s:14:"node_reference";s:6:"weight";i:25;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '89',
+  'field_id' => '57',
+  'field_name' => 'field_user_reference',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:14:"User Reference";s:6:"widget";a:5:{s:6:"weight";s:2:"26";s:4:"type";s:27:"user_reference_autocomplete";s:6:"module";s:14:"user_reference";s:6:"active";i:1;s:8:"settings";a:3:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:17:"autocomplete_path";s:27:"user_reference/autocomplete";}}s:8:"settings";a:2:{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:22:"user_reference_default";s:8:"settings";a:0:{}s:6:"module";s:14:"user_reference";s:6:"weight";i:26;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '90',
+  'field_id' => '58',
+  'field_name' => 'field_telephone',
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'data' => 'a:7:{s:5:"label";s:9:"Telephone";s:6:"widget";a:5:{s:6:"weight";s:2:"21";s:4:"type";s:17:"telephone_default";s:6:"module";s:9:"telephone";s:6:"active";i:1;s:8:"settings";a:1:{s:11:"placeholder";s:0:"";}}s:8:"settings";a:2:{s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:14:"telephone_link";s:6:"weight";s:2:"21";s:8:"settings";a:1:{s:5:"title";s:0:"";}s:6:"module";s:9:"telephone";}s:6:"teaser";a:5:{s:5:"label";s:5:"above";s:4:"type";s:10:"text_plain";s:6:"weight";s:1:"0";s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '91',
+  'field_id' => '59',
+  'field_name' => 'field_file_mfw',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:6:{s:5:"label";s:8:"file_mfw";s:6:"widget";a:5:{s:6:"weight";s:2:"17";s:4:"type";s:8:"file_mfw";s:6:"module";s:28:"multiupload_filefield_widget";s:6:"active";i:1;s:8:"settings";a:1:{s:18:"progress_indicator";s:8:"throbber";}}s:8:"settings";a:6:{s:14:"file_directory";s:0:"";s:15:"file_extensions";s:3:"txt";s:12:"max_filesize";s:0:"";s:17:"description_field";i: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:"file_default";s:8:"settings";a:0:{}s:6:"module";s:4:"file";s:6:"weight";i:15;}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '92',
+  'field_id' => '60',
+  'field_name' => 'field_image_miw',
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'data' => 'a:6:{s:5:"label";s:9:"image_miw";s:6:"widget";a:5:{s:6:"weight";s:2:"18";s:4:"type";s:9:"image_miw";s:6:"module";s:29:"multiupload_imagefield_widget";s:6:"active";i:1;s:8:"settings";a:2:{s:18:"progress_indicator";s:8:"throbber";s:19:"preview_image_style";s:9:"thumbnail";}}s:8:"settings";a:10:{s:14:"file_directory";s:0:"";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";i:0;s:11:"title_field";i:0;s:13:"default_image";i: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:5:"image";s:8:"settings";a:2:{s:11:"image_style";s:0:"";s:10:"image_link";s:0:"";}s:6:"module";s:5:"image";s:6:"weight";i:16;}}s:8:"required";i:0;s:11:"description";s:0:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '93',
+  'field_id' => '61',
+  'field_name' => 'field_checkbox',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => 'a:7:{s:5:"label";s:8:"checkbox";s:6:"widget";a:5:{s:6:"weight";s:2:"25";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:2:{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:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:25;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}',
+  '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',
+))
+->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' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "is - ...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "'Tis everywhere.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "fr - 'Tis everywhere.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "is - 'Tis everywhere.",
+  '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_data_field_checkbox', 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_checkbox_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_checkbox_value' => array(
+      'field_checkbox_value',
+    ),
+  ),
+    'mysql_character_set' => 'utf8',
+  ));
+$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->insert('field_data_comment_body')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'comment_body_value',
+  'comment_body_format',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'This is a comment',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'TNG is better than DS9.',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'This is a comment to an Icelandic translation.',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'A comment without language (migrated from Drupal 6)',
+  'comment_body_format' => 'filtered_html',
+))
+->execute();
+$connection->schema()->createTable('field_data_description_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,
+    ),
+    'description_field_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'description_field_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'description_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',
+    ),
+    'description_field_format' => array(
+      array(
+        'description_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_description_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'description_field_value',
+  'description_field_summary',
+  'description_field_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The first term. (This is a real field!)',
+  'description_field_summary' => '',
+  'description_field_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The second term.',
+  'description_field_summary' => '',
+  'description_field_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The third term in plain old English.',
+  'description_field_summary' => '',
+  'description_field_format' => 'full_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'description_field_value' => "The third term en français s'il vous plaît.",
+  'description_field_summary' => '',
+  'description_field_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'description_field_value' => 'The third term á íslensku.',
+  'description_field_summary' => '',
+  'description_field_format' => 'plain_text',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_boolean', 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_boolean_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_boolean')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_boolean_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_chancellor', 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_chancellor_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_chancellor_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',
+    ),
+    'field_chancellor_format' => array(
+      'field_chancellor_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_chancellor')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_chancellor_value',
+  'field_chancellor_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'deleted' => '0',
+  'entity_id' => '21',
+  'revision_id' => '21',
+  'language' => 'und',
+  'delta' => '0',
+  'field_chancellor_value' => "K'mpec",
+  'field_chancellor_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'deleted' => '0',
+  'entity_id' => '22',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'field_chancellor_value' => "fr - K'mpec",
+  'field_chancellor_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_data_field_color', 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_color_value' => 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',
+    ),
+    'field_color_value' => array(
+      array(
+        'field_color_value',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_color')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_color_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'en',
+  'delta' => '0',
+  'field_color_value' => '0',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_color_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'is',
+  'delta' => '0',
+  'field_color_value' => '0',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_date', 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_date_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_date')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_value' => '2015-01-20 04:15:00',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_date_with_end_time', 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_date_with_end_time_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_date_with_end_time_value2' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_date_with_end_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_with_end_time_value',
+  'field_date_with_end_time_value2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_with_end_time_value' => '1421727300',
+  'field_date_with_end_time_value2' => '1421727300',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_date_without_time', 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_date_without_time_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_date_without_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_without_time_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_without_time_value' => '2015-01-20T00:00:00',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_datetime_without_time', 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_datetime_without_time_value' => 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',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_datetime_without_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_datetime_without_time_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_datetime_without_time_value' => '2015-01-20 00:00:00',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_email', 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_email_email' => 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_field_email')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_email_email',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_email_email' => 'default@example.com',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '1',
+  'field_email_email' => 'another@example.com',
+))
+->execute();
+$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',
+    ),
+  ),
+  '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_file', 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_file_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_file_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_file_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_file')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_file_fid',
+  'field_file_display',
+  'field_file_description',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_file_mfw', 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_file_mfw_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_file_mfw_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'tiny',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_file_mfw_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_file_mfw_fid' => array(
+      'field_file_mfw_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_float', 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_float_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_float')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_float_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_value' => '1',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_float_list', 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_float_list_value' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_float_list_value' => array(
+      'field_float_list_value',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_float_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_float_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_list_value' => '3.1416',
+))
+->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_image_miw', 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_image_miw_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_image_miw_alt' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '512',
+    ),
+    'field_image_miw_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '1024',
+    ),
+    'field_image_miw_width' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_image_miw_height' => 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_image_miw_fid' => array(
+      'field_image_miw_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_images', 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_images_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_images_alt' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '512',
+    ),
+    'field_images_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '1024',
+    ),
+    'field_images_width' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_images_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->insert('field_data_field_images')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_images_fid',
+  'field_images_alt',
+  'field_images_title',
+  'field_images_width',
+  'field_images_height',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_images_fid' => '1',
+  'field_images_alt' => 'alt text',
+  'field_images_title' => 'title text',
+  'field_images_width' => '93',
+  'field_images_height' => '93',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_integer', 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_integer_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_integer')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_integer_value',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '1000000',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '2000000',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '3000000',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '7',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '99',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '9',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '1',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '10',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '4',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_integer_list', 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_integer_list_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_integer_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_integer_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_integer_list_value' => '7',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_link', 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_link_url' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '2048',
+    ),
+    'field_link_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_link_attributes' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_link')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_link_url',
+  'field_link_title',
+  'field_link_attributes',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => 'http://google.com',
+  'field_link_title' => 'Click Here',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => NULL,
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => NULL,
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_long_text', 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_long_text_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_long_text_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_long_text_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_node_entityreference', 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_node_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_node_entityreference_target_id' => array(
+      'field_node_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_node_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_node_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_entityreference_target_id' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_node_reference', 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_node_reference_nid' => 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_node_reference_nid' => array(
+      'field_node_reference_nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_node_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_node_reference_nid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_reference_nid' => '5',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_phone', 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_phone_value' => 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_field_phone')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_phone_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'field_phone_value' => '99-99-99-99',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_private_file', 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_private_file_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_private_file_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'tiny',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_private_file_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_private_file_fid' => array(
+      'field_private_file_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_private_file')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_private_file_fid',
+  'field_private_file_display',
+  'field_private_file_description',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'field_private_file_fid' => '4',
+  'field_private_file_display' => '1',
+  'field_private_file_description' => '',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_rating', 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_rating_value' => 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',
+    ),
+    'field_rating_value' => array(
+      array(
+        'field_rating_value',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_rating')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_rating_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'en',
+  'delta' => '0',
+  'field_rating_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_rating_value' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'is',
+  'delta' => '0',
+  'field_rating_value' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_reference', 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_reference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_reference_target_id' => array(
+      'field_reference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_reference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_reference_2', 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_reference_2_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_reference_2_target_id' => array(
+      'field_reference_2_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_reference_2')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_reference_2_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_sector', 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_sector_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_sector_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',
+    ),
+    'field_sector_format' => array(
+      'field_sector_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_sector')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_sector_value',
+  'field_sector_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocablocalized',
+  'deleted' => '0',
+  'entity_id' => '20',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'field_sector_value' => 'Bajor',
+  'field_sector_format' => NULL,
+))
+->execute();
+$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' => '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_tags_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_field_tags')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_tags_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_telephone', 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_telephone_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '256',
+    ),
+  ),
+  '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',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_telephone')
+  ->fields(array(
+    'entity_type',
+    'bundle',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+    'field_telephone_value',
+  ))
+  ->values(array(
+    'entity_type' => 'node',
+    'bundle' => 'test_content_type',
+    'deleted' => '0',
+    'entity_id' => '1',
+    'revision_id' => '1',
+    'language' => 'und',
+    'delta' => '0',
+    'field_telephone_value' => '99-99-99-99',
+  ))
+  ->execute();
+$connection->schema()->createTable('field_data_field_termplain', 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_termplain_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->schema()->createTable('field_data_field_termrss', 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_termrss_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->schema()->createTable('field_data_field_term_entityreference', 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_term_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_term_entityreference_target_id' => array(
+      'field_term_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_term_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_term_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_entityreference_target_id' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '1',
+  'field_term_entityreference_target_id' => '15',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_term_reference', 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_term_reference_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_field_term_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_term_reference_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_text', 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_text_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '256',
+    ),
+    'field_text_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_field_text')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_value',
+  'field_text_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_data_field_text_filtered', 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_text_filtered_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_filtered_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',
+    ),
+    'field_text_filtered_format' => array(
+      array(
+        'field_text_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_list', 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_text_list_value' => 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_field_text_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_list_value' => 'Some more text',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_text_long_filtered', 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_text_long_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_filtered_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',
+    ),
+    'field_text_long_filtered_format' => array(
+      array(
+        'field_text_long_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_long_plain', 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_text_long_plain_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_plain_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',
+    ),
+    'field_text_long_plain_format' => array(
+      array(
+        'field_text_long_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+$connection->insert('field_data_field_text_long_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_long_plain_value',
+  'field_text_long_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'DS9 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'is - DS9 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'is - Firefly 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'Firefly 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->execute();
+
+$connection->schema()->createTable('field_data_field_text_long_plain_filtered', 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_text_long_plain_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_plain_filtered_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',
+    ),
+    'field_text_long_plain_filtered_format' => array(
+      array(
+        'field_text_long_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_plain', 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_text_plain_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_plain_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',
+    ),
+    'field_text_plain_format' => array(
+      array(
+        'field_text_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_text_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_plain_value',
+  'field_text_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Kai Opaka',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Kai Opaka',
+  'field_text_plain_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_data_field_text_plain_filtered', 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_text_plain_filtered_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_plain_filtered_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',
+    ),
+    'field_text_plain_filtered_format' => array(
+      array(
+        'field_text_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_sum_filtered', 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_text_sum_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_filtered_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_filtered_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',
+    ),
+    'field_text_sum_filtered_format' => array(
+      array(
+        'field_text_sum_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_sum_plain', 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_text_sum_plain_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_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',
+    ),
+    'field_text_sum_plain_format' => array(
+      array(
+        'field_text_sum_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_text_sum_plain_filtered', 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_text_sum_plain_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_filtered_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_filtered_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',
+    ),
+    'field_text_sum_plain_filtered_format' => array(
+      array(
+        'field_text_sum_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_data_field_training', 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_training_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_training_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',
+    ),
+    'field_training_format' => array(
+      'field_training_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_training')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_training_value',
+  'field_training_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabfixed',
+  'deleted' => '0',
+  'entity_id' => '24',
+  'revision_id' => '24',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_training_value' => 'fr - specialist',
+  'field_training_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_data_field_tree', 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_tree_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_tree_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',
+    ),
+    'field_tree_format' => array(
+      array(
+        'field_tree_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_tree')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_tree_value',
+  'field_tree_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'en',
+  'delta' => '0',
+  'field_tree_value' => 'lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_tree_value' => 'fr - lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'is',
+  'delta' => '0',
+  'field_tree_value' => 'is - lancewood',
+  'field_tree_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_data_field_user_entityreference', 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_user_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_user_entityreference_target_id' => array(
+      'field_user_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_user_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_user_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_entityreference_target_id' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_user_reference', 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_user_reference_uid' => 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_user_reference_uid' => array(
+      'field_user_reference_uid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_user_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_user_reference_uid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_reference_uid' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_vocab_fixed', 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_vocab_fixed_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_vocab_fixed_tid' => array(
+      'field_vocab_fixed_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_vocab_fixed')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_fixed_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_fixed_tid' => '24',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_vocab_localize', 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_vocab_localize_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_vocab_localize_tid' => array(
+      'field_vocab_localize_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_vocab_localize')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_localize_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->execute();
+$connection->schema()->createTable('field_data_field_vocab_translate', 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_vocab_translate_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_vocab_translate_tid' => array(
+      'field_vocab_translate_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_field_vocab_translate')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_translate_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '21',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '23',
+))
+->execute();
+$connection->schema()->createTable('field_data_name_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,
+    ),
+    'name_field_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'name_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',
+    ),
+    'name_field_format' => array(
+      array(
+        'name_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_name_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'name_field_value',
+  'name_field_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term1 (This is a real field!)',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term2',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term3 in plain old English',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'name_field_value' => "Term3 en français s'il vous plaît",
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'name_field_value' => 'Term3 á íslensku',
+  'name_field_format' => NULL,
+))
+->execute();
+$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->insert('field_data_subject_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'subject_field_value',
+  'subject_field_format',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in English',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in French',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in Icelandic',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'TNG for the win!',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'is',
+  'delta' => '0',
+  'subject_field_value' => 'Comment to IS translation',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'Comment without language',
+  'subject_field_format' => NULL,
+))
+->execute();
+$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_data_title_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,
+    ),
+    'title_field_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'title_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',
+    ),
+    'title_field_format' => array(
+      array(
+        'title_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_data_title_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'title_field_value',
+  'title_field_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'title_field_value' => 'An English Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'title_field_value' => 'A French Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'title_field_value' => 'An Icelandic Node',
+  'title_field_format' => NULL,
+))
+->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' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "is - ...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "is - ...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'is - Is that is it awesome.',
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "'Tis everywhere.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "fr - 'Tis everywhere.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "is - 'Tis everywhere.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
+->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_field_checkbox', 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_checkbox_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_checkbox_value' => array(
+      'field_checkbox_value',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$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->insert('field_revision_comment_body')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'comment_body_value',
+  'comment_body_format',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'This is a comment',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'TNG is better than DS9.',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'This is a comment to an Icelandic translation.',
+  'comment_body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'comment_body_value' => 'A comment without language (migrated from Drupal 6)',
+  'comment_body_format' => 'filtered_html',
+))
+->execute();
+$connection->schema()->createTable('field_revision_description_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,
+    ),
+    'description_field_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'description_field_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'description_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',
+    ),
+    'description_field_format' => array(
+      array(
+        'description_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_description_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'description_field_value',
+  'description_field_summary',
+  'description_field_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The first term. (This is a real field!)',
+  'description_field_summary' => '',
+  'description_field_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The second term.',
+  'description_field_summary' => NULL,
+  'description_field_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'description_field_value' => 'The third term in plain old English.',
+  'description_field_summary' => '',
+  'description_field_format' => 'full_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'description_field_value' => "The third term en français s'il vous plaît.",
+  'description_field_summary' => '',
+  'description_field_format' => 'full_html',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'description_field_value' => 'The third term á íslensku.',
+  'description_field_summary' => '',
+  'description_field_format' => 'full_html',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_boolean', 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_boolean_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_boolean')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_boolean_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_chancellor', 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_chancellor_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_chancellor_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',
+    ),
+    'field_chancellor_format' => array(
+      'field_chancellor_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_chancellor')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_chancellor_value',
+  'field_chancellor_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'deleted' => '0',
+  'entity_id' => '21',
+  'revision_id' => '21',
+  'language' => 'und',
+  'delta' => '0',
+  'field_chancellor_value' => "K'mpec",
+  'field_chancellor_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'deleted' => '0',
+  'entity_id' => '22',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'field_chancellor_value' => "fr - K'mpec",
+  'field_chancellor_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_color', 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_color_value' => 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',
+    ),
+    'field_color_value' => array(
+      array(
+        'field_color_value',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_color')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_color_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'en',
+  'delta' => '0',
+  'field_color_value' => '0',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_color_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'is',
+  'delta' => '0',
+  'field_color_value' => '0',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_date', 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_date_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_date')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_value' => '2015-01-20 04:15:00',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_date_with_end_time', 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_date_with_end_time_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_date_with_end_time_value2' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_date_with_end_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_with_end_time_value',
+  'field_date_with_end_time_value2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_with_end_time_value' => '1421727300',
+  'field_date_with_end_time_value2' => '1421727300',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_date_without_time', 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_date_without_time_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '100',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_date_without_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_without_time_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_without_time_value' => '2015-01-20T00:00:00',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_datetime_without_time', 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_datetime_without_time_value' => 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',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_datetime_without_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_datetime_without_time_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_datetime_without_time_value' => '2015-01-20 00:00:00',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_email', 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_email_email' => 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_field_email')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_email_email',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_email_email' => 'default@example.com',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '1',
+  'field_email_email' => 'another@example.com',
+))
+->execute();
+$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',
+    ),
+  ),
+  '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_file', 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_file_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_file_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_file_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_file')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_file_fid',
+  'field_file_display',
+  'field_file_description',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_file_mfw', 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_file_mfw_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_file_mfw_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'tiny',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_file_mfw_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_file_mfw_fid' => array(
+      'field_file_mfw_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_float', 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_float_value' => array(
+      'type' => 'numeric',
+      'not null' => FALSE,
+      'precision' => '10',
+      'scale' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_float')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_float_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_value' => '1',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_float_list', 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_float_list_value' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_float_list_value' => array(
+      'field_float_list_value',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_float_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_float_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_list_value' => '3.1416',
+))
+->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_image_miw', 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_image_miw_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_image_miw_alt' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '512',
+    ),
+    'field_image_miw_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '1024',
+    ),
+    'field_image_miw_width' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_image_miw_height' => 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_image_miw_fid' => array(
+      'field_image_miw_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_images', 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_images_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_images_alt' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '512',
+    ),
+    'field_images_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '1024',
+    ),
+    'field_images_width' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_images_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->insert('field_revision_field_images')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_images_fid',
+  'field_images_alt',
+  'field_images_title',
+  'field_images_width',
+  'field_images_height',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_images_fid' => '1',
+  'field_images_alt' => 'alt text',
+  'field_images_title' => 'title text',
+  'field_images_width' => '93',
+  'field_images_height' => '93',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_integer', 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_integer_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_integer')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_integer_value',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '1000000',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '2000000',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '3000000',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '7',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '99',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '10',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '4',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_integer_list', 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_integer_list_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_integer_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_integer_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_integer_list_value' => '7',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_link', 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_link_url' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '2048',
+    ),
+    'field_link_title' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_link_attributes' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_link')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_link_url',
+  'field_link_title',
+  'field_link_attributes',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => 'http://google.com',
+  'field_link_title' => 'Click Here',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => 'Home;',
+  'field_link_attributes' => 'a:0:{}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => 'Home',
+  'field_link_attributes' => 'a:0:{}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => 'Home',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => 'Home',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_long_text', 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_long_text_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_long_text_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_long_text_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_node_entityreference', 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_node_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_node_entityreference_target_id' => array(
+      'field_node_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_node_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_node_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_entityreference_target_id' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_node_reference', 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_node_reference_nid' => 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_node_reference_nid' => array(
+      'field_node_reference_nid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_node_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_node_reference_nid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_reference_nid' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_reference_nid' => '5',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_phone', 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_phone_value' => 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_field_phone')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_phone_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_phone_value' => '99-99-99-99',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'field_phone_value' => '99-99-99-99',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_private_file', 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_private_file_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_private_file_display' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'tiny',
+      'default' => '1',
+      'unsigned' => TRUE,
+    ),
+    'field_private_file_description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  '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_private_file_fid' => array(
+      'field_private_file_fid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_private_file')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_private_file_fid',
+  'field_private_file_display',
+  'field_private_file_description',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'field_private_file_fid' => '4',
+  'field_private_file_display' => '1',
+  'field_private_file_description' => '',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_rating', 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_rating_value' => 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',
+    ),
+    'field_rating_value' => array(
+      array(
+        'field_rating_value',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_rating')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_rating_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '8',
+  'language' => 'en',
+  'delta' => '0',
+  'field_rating_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '9',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_rating_value' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'blog',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '10',
+  'language' => 'is',
+  'delta' => '0',
+  'field_rating_value' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_reference', 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_reference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_reference_target_id' => array(
+      'field_reference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_reference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'user',
+  'bundle' => 'user',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_reference_2', 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_reference_2_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_reference_2_target_id' => array(
+      'field_reference_2_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_reference_2')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_reference_2_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '2',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_sector', 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_sector_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_sector_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',
+    ),
+    'field_sector_format' => array(
+      'field_sector_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_sector')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_sector_value',
+  'field_sector_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocablocalized',
+  'deleted' => '0',
+  'entity_id' => '20',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'field_sector_value' => 'Bajor',
+  'field_sector_format' => NULL,
+))
+->execute();
+$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' => '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_tags_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_field_tags')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_tags_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_telephone', 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_telephone_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '256',
+    ),
+  ),
+  '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',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_telephone')
+  ->fields(array(
+    'entity_type',
+    'bundle',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+    'field_telephone_value',
+  ))
+  ->values(array(
+    'entity_type' => 'node',
+    'bundle' => 'test_content_type',
+    'deleted' => '0',
+    'entity_id' => '1',
+    'revision_id' => '1',
+    'language' => 'und',
+    'delta' => '0',
+    'field_telephone_value' => '99-99-99-99',
+  ))
+  ->execute();
+$connection->schema()->createTable('field_revision_field_term_entityreference', 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_term_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_term_entityreference_target_id' => array(
+      'field_term_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_term_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_term_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_entityreference_target_id' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '1',
+  'field_term_entityreference_target_id' => '15',
+))
+->execute();
+
+$connection->schema()->createTable('field_revision_field_termplain', 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_termplain_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->schema()->createTable('field_revision_field_termrss', 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_termrss_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->schema()->createTable('field_revision_field_term_reference', 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_term_reference_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_field_term_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_term_reference_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_text', 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_text_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '256',
+    ),
+    'field_text_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_field_text')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_value',
+  'field_text_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_text_filtered', 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_text_filtered_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_filtered_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',
+    ),
+    'field_text_filtered_format' => array(
+      array(
+        'field_text_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_list', 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_text_list_value' => 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_field_text_list')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_list_value',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_list_value' => 'Some more text',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_text_long_filtered', 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_text_long_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_filtered_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',
+    ),
+    'field_text_long_filtered_format' => array(
+      array(
+        'field_text_long_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_long_plain', 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_text_long_plain_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_plain_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',
+    ),
+    'field_text_long_plain_format' => array(
+      array(
+        'field_text_long_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+$connection->insert('field_revision_field_text_long_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_long_plain_value',
+  'field_text_long_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'DS9 1st rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'DS9 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'is - DS9 1st rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'is - DS9 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'is - Firefly 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'Firefly 1st rev',
+  'field_text_long_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_long_plain_value' => 'Firefly 2nd rev',
+  'field_text_long_plain_format' => NULL,
+))
+->execute();
+
+$connection->schema()->createTable('field_revision_field_text_long_plain_filtered', 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_text_long_plain_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_long_plain_filtered_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',
+    ),
+    'field_text_long_plain_filtered_format' => array(
+      array(
+        'field_text_long_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_plain', 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_text_plain_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_plain_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',
+    ),
+    'field_text_plain_format' => array(
+      array(
+        'field_text_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_text_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_plain_value',
+  'field_text_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Kai Opaka',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Kai Opaka',
+  'field_text_plain_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_text_plain_filtered', 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_text_plain_filtered_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_text_plain_filtered_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',
+    ),
+    'field_text_plain_filtered_format' => array(
+      array(
+        'field_text_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_sum_filtered', 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_text_sum_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_filtered_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_filtered_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',
+    ),
+    'field_text_sum_filtered_format' => array(
+      array(
+        'field_text_sum_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_sum_plain', 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_text_sum_plain_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_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',
+    ),
+    'field_text_sum_plain_format' => array(
+      array(
+        'field_text_sum_plain_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_text_sum_plain_filtered', 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_text_sum_plain_filtered_value' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_filtered_summary' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'field_text_sum_plain_filtered_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',
+    ),
+    'field_text_sum_plain_filtered_format' => array(
+      array(
+        'field_text_sum_plain_filtered_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('field_revision_field_training', 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_training_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_training_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',
+    ),
+    'field_training_format' => array(
+      'field_training_format',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_training')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_training_value',
+  'field_training_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabfixed',
+  'deleted' => '0',
+  'entity_id' => '24',
+  'revision_id' => '24',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_training_value' => 'is this french',
+  'field_training_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'vocabfixed',
+  'deleted' => '0',
+  'entity_id' => '24',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'field_training_value' => 'specialist',
+  'field_training_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_user_entityreference', 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_user_entityreference_target_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      '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_user_entityreference_target_id' => array(
+      'field_user_entityreference_target_id',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+$connection->schema()->createTable('field_revision_field_user_reference', 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_user_reference_uid' => 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_user_reference_uid' => array(
+      'field_user_reference_uid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_user_reference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_user_reference_uid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_reference_uid' => '3',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_vocab_fixed', 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_vocab_fixed_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_vocab_fixed_tid' => array(
+      'field_vocab_fixed_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_vocab_fixed')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_fixed_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_fixed_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_fixed_tid' => '24',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_vocab_localize', 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_vocab_localize_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_vocab_localize_tid' => array(
+      'field_vocab_localize_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_vocab_localize')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_localize_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_vocab_translate', 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_vocab_translate_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_vocab_translate_tid' => array(
+      'field_vocab_translate_tid',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_vocab_translate')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_vocab_translate_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '21',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '21',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '23',
+))
+->execute();
+$connection->schema()->createTable('field_revision_name_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,
+    ),
+    'name_field_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'name_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',
+    ),
+    'name_field_format' => array(
+      array(
+        'name_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_name_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'name_field_value',
+  'name_field_format',
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term1 (This is a real field!)',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term2',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term3 in plain old English',
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'fr',
+  'delta' => '0',
+  'name_field_value' => "Term3 en français s'il vous plaît",
+  'name_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'is',
+  'delta' => '0',
+  'name_field_value' => 'Term3 á íslensku',
+  'name_field_format' => NULL,
+))
+->execute();
+$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->insert('field_revision_subject_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'subject_field_value',
+  'subject_field_format',
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in English',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in French',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'subject_field_value' => 'Subject field in Icelandic',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'TNG for the win!',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'is',
+  'delta' => '0',
+  'subject_field_value' => 'Comment to IS translation',
+  'subject_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_test_content_type',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '4',
+  'language' => 'en',
+  'delta' => '0',
+  'subject_field_value' => 'Comment without language',
+  'subject_field_format' => NULL,
+))
+->execute();
+$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('field_revision_title_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,
+    ),
+    'title_field_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'title_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',
+    ),
+    'title_field_format' => array(
+      array(
+        'title_field_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_title_field')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'title_field_value',
+  'title_field_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'en',
+  'delta' => '0',
+  'title_field_value' => 'An English Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'title_field_value' => 'A French Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'title_field_value' => 'An Icelandic Node',
+  'title_field_format' => NULL,
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_tree', 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_tree_value' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'field_tree_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',
+    ),
+    'field_tree_format' => array(
+      array(
+        'field_tree_format',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_tree')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_tree_value',
+  'field_tree_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '15',
+  'language' => 'en',
+  'delta' => '0',
+  'field_tree_value' => 'lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '16',
+  'language' => 'en',
+  'delta' => '0',
+  'field_tree_value' => 'lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '17',
+  'language' => 'en',
+  'delta' => '0',
+  'field_tree_value' => 'lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'en',
+  'delta' => '0',
+  'field_tree_value' => 'lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_tree_value' => 'fr - lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '16',
+  'language' => 'is',
+  'delta' => '0',
+  'field_tree_value' => 'is - lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '17',
+  'language' => 'is',
+  'delta' => '0',
+  'field_tree_value' => 'is - lancewood',
+  'field_tree_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'et',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '18',
+  'language' => 'is',
+  'delta' => '0',
+  'field_tree_value' => 'is - lancewood',
+  'field_tree_format' => NULL,
+))
+->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' => '1',
+  'uid' => '1',
+  'filename' => 'cube.jpeg',
+  'uri' => 'public://cube.jpeg',
+  'filemime' => 'image/jpeg',
+  'filesize' => '3620',
+  'status' => '1',
+  'timestamp' => '1421727515',
+))
+->values(array(
+  'fid' => '2',
+  'uid' => '1',
+  'filename' => 'ds9.txt',
+  'uri' => 'public://ds9.txt',
+  'filemime' => 'text/plain',
+  'filesize' => '4',
+  'status' => '1',
+  'timestamp' => '1421727516',
+))
+->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' => '1',
+  'module' => 'file',
+  'type' => 'node',
+  'id' => '1',
+  'count' => '3',
+))
+->values(array(
+  'fid' => '2',
+  'module' => 'file',
+  'type' => 'node',
+  'id' => '1',
+  'count' => '2',
+))
+->values(array(
+  'fid' => '2',
+  'module' => 'file',
+  'type' => 'user',
+  'id' => '2',
+  'count' => '1',
+))
+->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',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+    'nid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->schema()->createTable('i18n_block_language', array(
+  'fields' => array(
+    'module' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'module',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'language' => array(
+      'language',
+    ),
+  ),
+  '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' => '57',
+  'textgroup' => 'blocks',
+  'context' => 'block:1:title',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'title',
+  'objectindex' => '1',
+  'format' => '',
+))
+->values(array(
+  'lid' => '60',
+  'textgroup' => 'blocks',
+  'context' => 'block:1:body',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'body',
+  'objectindex' => '1',
+  'format' => 'filtered_html',
+))
+->values(array(
+  'lid' => '61',
+  'textgroup' => 'node',
+  'context' => 'type:article:name',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '62',
+  'textgroup' => 'node',
+  'context' => 'type:article:title_label',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'title_label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '63',
+  'textgroup' => 'node',
+  'context' => 'type:article:description',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '64',
+  'textgroup' => 'node',
+  'context' => 'type:article:help',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'help',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '65',
+  'textgroup' => 'node',
+  'context' => 'type:book:name',
+  'objectid' => 'book',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '66',
+  'textgroup' => 'node',
+  'context' => 'type:book:title_label',
+  'objectid' => 'book',
+  'type' => 'type',
+  'property' => 'title_label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '67',
+  'textgroup' => 'node',
+  'context' => 'type:book:description',
+  'objectid' => 'book',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '68',
+  'textgroup' => 'node',
+  'context' => 'type:page:name',
+  'objectid' => 'page',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '69',
+  'textgroup' => 'node',
+  'context' => 'type:page:title_label',
+  'objectid' => 'page',
+  'type' => 'type',
+  'property' => 'title_label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '70',
+  'textgroup' => 'node',
+  'context' => 'type:page:description',
+  'objectid' => 'page',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '71',
+  'textgroup' => 'node',
+  'context' => 'type:page:help',
+  'objectid' => 'page',
+  'type' => 'type',
+  'property' => 'help',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '72',
+  'textgroup' => 'node',
+  'context' => 'type:test_content_type:name',
+  'objectid' => 'test_content_type',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '73',
+  'textgroup' => 'node',
+  'context' => 'type:test_content_type:title_label',
+  'objectid' => 'test_content_type',
+  'type' => 'type',
+  'property' => 'title_label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '74',
+  'textgroup' => 'node',
+  'context' => 'type:test_content_type:description',
+  'objectid' => 'test_content_type',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '75',
+  'textgroup' => 'node',
+  'context' => 'type:test_content_type:help',
+  'objectid' => 'test_content_type',
+  'type' => 'type',
+  'property' => 'help',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '76',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_page:label',
+  'objectid' => 'comment_node_page',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '77',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:20:name',
+  'objectid' => '20',
+  'type' => 'term',
+  'property' => 'name',
+  'objectindex' => '20',
+  'format' => '',
+))
+->values(array(
+  'lid' => '78',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:20:description',
+  'objectid' => '20',
+  'type' => 'term',
+  'property' => 'description',
+  'objectindex' => '20',
+  'format' => 'filtered_html',
+))
+->values(array(
+  'lid' => '79',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:19:name',
+  'objectid' => '19',
+  'type' => 'term',
+  'property' => 'name',
+  'objectindex' => '19',
+  'format' => '',
+))
+->values(array(
+  'lid' => '80',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:19:description',
+  'objectid' => '19',
+  'type' => 'term',
+  'property' => 'description',
+  'objectindex' => '19',
+  'format' => 'filtered_html',
+))
+->values(array(
+  'lid' => '81',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:2:name',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '2',
+  'format' => '',
+))
+->values(array(
+  'lid' => '82',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:2:description',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '2',
+  'format' => '',
+))
+->values(array(
+  'lid' => '83',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:1:name',
+  'objectid' => '1',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '1',
+  'format' => '',
+))
+->values(array(
+  'lid' => '84',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:1:description',
+  'objectid' => '1',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '1',
+  'format' => '',
+))
+->values(array(
+  'lid' => '85',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:3:name',
+  'objectid' => '3',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '3',
+  'format' => '',
+))
+->values(array(
+  'lid' => '86',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:3:description',
+  'objectid' => '3',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '3',
+  'format' => '',
+))
+->values(array(
+  'lid' => '87',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:7:name',
+  'objectid' => '7',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '7',
+  'format' => '',
+))
+->values(array(
+  'lid' => '88',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:7:description',
+  'objectid' => '7',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '7',
+  'format' => '',
+))
+->values(array(
+  'lid' => '89',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:5:name',
+  'objectid' => '5',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '5',
+  'format' => '',
+))
+->values(array(
+  'lid' => '90',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:5:description',
+  'objectid' => '5',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '5',
+  'format' => '',
+))
+->values(array(
+  'lid' => '91',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:6:name',
+  'objectid' => '6',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '6',
+  'format' => '',
+))
+->values(array(
+  'lid' => '92',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:6:description',
+  'objectid' => '6',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '6',
+  'format' => '',
+))
+->values(array(
+  'lid' => '93',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:4:name',
+  'objectid' => '4',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '4',
+  'format' => '',
+))
+->values(array(
+  'lid' => '94',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:4:description',
+  'objectid' => '4',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '4',
+  'format' => '',
+))
+->values(array(
+  'lid' => '95',
+  'textgroup' => 'field',
+  'context' => 'field_boolean:test_content_type:description',
+  'objectid' => 'test_content_type',
+  'type' => 'field_boolean',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '96',
+  'textgroup' => 'field',
+  'context' => 'field_email:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_email',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '97',
+  'textgroup' => 'field',
+  'context' => 'field_email:test_content_type:description',
+  'objectid' => 'test_content_type',
+  'type' => 'field_email',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '98',
+  'textgroup' => 'field',
+  'context' => 'field_phone:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_phone',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '99',
+  'textgroup' => 'field',
+  'context' => 'field_date:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_date',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '100',
+  'textgroup' => 'field',
+  'context' => 'field_date_with_end_time:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_date_with_end_time',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '101',
+  'textgroup' => 'field',
+  'context' => 'field_file:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_file',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '102',
+  'textgroup' => 'field',
+  'context' => 'field_file:user:label',
+  'objectid' => 'user',
+  'type' => 'field_file',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '103',
+  'textgroup' => 'field',
+  'context' => 'field_float:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_float',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '104',
+  'textgroup' => 'field',
+  'context' => 'field_float:test_content_type:description',
+  'objectid' => 'test_content_type',
+  'type' => 'field_float',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '105',
+  'textgroup' => 'field',
+  'context' => 'field_images:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_images',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '106',
+  'textgroup' => 'field',
+  'context' => 'field_integer:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_integer',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '107',
+  'textgroup' => 'field',
+  'context' => 'field_integer:comment_node_test_content_type:label',
+  'objectid' => 'comment_node_test_content_type',
+  'type' => 'field_integer',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '108',
+  'textgroup' => 'field',
+  'context' => 'field_integer:test_vocabulary:label',
+  'objectid' => 'test_vocabulary',
+  'type' => 'field_integer',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '109',
+  'textgroup' => 'field',
+  'context' => 'field_integer:user:label',
+  'objectid' => 'user',
+  'type' => 'field_integer',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '110',
+  'textgroup' => 'field',
+  'context' => 'field_link:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_link',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '111',
+  'textgroup' => 'field',
+  'context' => 'field_link:test_content_type:title_value',
+  'objectid' => 'test_content_type',
+  'type' => 'field_link',
+  'property' => 'title_value',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '112',
+  'textgroup' => 'field',
+  'context' => 'field_link:article:label',
+  'objectid' => 'article',
+  'type' => 'field_link',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '113',
+  'textgroup' => 'field',
+  'context' => 'field_link:article:title_value',
+  'objectid' => 'article',
+  'type' => 'field_link',
+  'property' => 'title_value',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '114',
+  'textgroup' => 'field',
+  'context' => 'field_link:blog:label',
+  'objectid' => 'blog',
+  'type' => 'field_link',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '115',
+  'textgroup' => 'field',
+  'context' => 'field_link:blog:title_value',
+  'objectid' => 'blog',
+  'type' => 'field_link',
+  'property' => 'title_value',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '116',
+  'textgroup' => 'field',
+  'context' => 'field_text_list:#allowed_values:Some Text',
+  'objectid' => '#allowed_values',
+  'type' => 'field_text_list',
+  'property' => 'Some Text',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '117',
+  'textgroup' => 'field',
+  'context' => 'field_text_list:#allowed_values:Some more text',
+  'objectid' => '#allowed_values',
+  'type' => 'field_text_list',
+  'property' => 'Some more text',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '118',
+  'textgroup' => 'field',
+  'context' => 'field_text_list:#allowed_values:The key',
+  'objectid' => '#allowed_values',
+  'type' => 'field_text_list',
+  'property' => 'The key',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '119',
+  'textgroup' => 'field',
+  'context' => 'field_text_list:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_text_list',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '120',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:#allowed_values:1',
+  'objectid' => '#allowed_values',
+  'type' => 'field_integer_list',
+  'property' => '1',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '121',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:#allowed_values:2',
+  'objectid' => '#allowed_values',
+  'type' => 'field_integer_list',
+  'property' => '2',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '122',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:#allowed_values:3',
+  'objectid' => '#allowed_values',
+  'type' => 'field_integer_list',
+  'property' => '3',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '123',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:#allowed_values:6',
+  'objectid' => '#allowed_values',
+  'type' => 'field_integer_list',
+  'property' => '6',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '124',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:#allowed_values:7',
+  'objectid' => '#allowed_values',
+  'type' => 'field_integer_list',
+  'property' => '7',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '125',
+  'textgroup' => 'field',
+  'context' => 'field_integer_list:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_integer_list',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '126',
+  'textgroup' => 'field',
+  'context' => 'field_long_text:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_long_text',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '127',
+  'textgroup' => 'field',
+  'context' => 'field_term_reference:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_term_reference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '128',
+  'textgroup' => 'field',
+  'context' => 'field_term_reference:test_vocabulary:label',
+  'objectid' => 'test_vocabulary',
+  'type' => 'field_term_reference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '129',
+  'textgroup' => 'field',
+  'context' => 'field_text:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_text',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '130',
+  'textgroup' => 'field',
+  'context' => 'field_node_entityreference:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_node_entityreference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '131',
+  'textgroup' => 'field',
+  'context' => 'field_user_entityreference:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_user_entityreference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '132',
+  'textgroup' => 'field',
+  'context' => 'field_term_entityreference:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_term_entityreference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '133',
+  'textgroup' => 'field',
+  'context' => 'field_private_file:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_private_file',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '134',
+  'textgroup' => 'field',
+  'context' => 'field_text_plain:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '135',
+  'textgroup' => 'field',
+  'context' => 'field_text_plain:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '136',
+  'textgroup' => 'field',
+  'context' => 'field_text_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '137',
+  'textgroup' => 'field',
+  'context' => 'field_text_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '138',
+  'textgroup' => 'field',
+  'context' => 'field_text_plain_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '139',
+  'textgroup' => 'field',
+  'context' => 'field_text_plain_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '140',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_plain:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_long_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '141',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_plain:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_long_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '142',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_long_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '143',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_long_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '144',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_plain_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_long_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '145',
+  'textgroup' => 'field',
+  'context' => 'field_text_long_plain_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_long_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '146',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_plain:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_sum_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '147',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_plain:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_sum_plain',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '148',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_sum_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '149',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_sum_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '150',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_plain_filtered:article:label',
+  'objectid' => 'article',
+  'type' => 'field_text_sum_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '151',
+  'textgroup' => 'field',
+  'context' => 'field_text_sum_plain_filtered:page:label',
+  'objectid' => 'page',
+  'type' => 'field_text_sum_plain_filtered',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '152',
+  'textgroup' => 'field',
+  'context' => 'field_datetime_without_time:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_datetime_without_time',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '153',
+  'textgroup' => 'field',
+  'context' => 'field_date_without_time:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_date_without_time',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '154',
+  'textgroup' => 'field',
+  'context' => 'field_float_list:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_float_list',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '155',
+  'textgroup' => 'field',
+  'context' => 'field_reference:article:label',
+  'objectid' => 'article',
+  'type' => 'field_reference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '156',
+  'textgroup' => 'field',
+  'context' => 'field_reference:user:label',
+  'objectid' => 'user',
+  'type' => 'field_reference',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '157',
+  'textgroup' => 'field',
+  'context' => 'field_reference_2:article:label',
+  'objectid' => 'article',
+  'type' => 'field_reference_2',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '158',
+  'textgroup' => 'field',
+  'context' => 'title_field:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'title_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '159',
+  'textgroup' => 'field',
+  'context' => 'subject_field:comment_node_article:label',
+  'objectid' => 'comment_node_article',
+  'type' => 'subject_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '160',
+  'textgroup' => 'field',
+  'context' => 'subject_field:comment_node_test_content_type:label',
+  'objectid' => 'comment_node_test_content_type',
+  'type' => 'subject_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '161',
+  'textgroup' => 'field',
+  'context' => 'name_field:test_vocabulary:label',
+  'objectid' => 'test_vocabulary',
+  'type' => 'name_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '162',
+  'textgroup' => 'field',
+  'context' => 'description_field:test_vocabulary:label',
+  'objectid' => 'test_vocabulary',
+  'type' => 'description_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '163',
+  'textgroup' => 'blocks',
+  'context' => 'user:login:title',
+  'objectid' => 'login',
+  'type' => 'user',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '674',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_book:label',
+  'objectid' => 'comment_node_book',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '675',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_forum:label',
+  'objectid' => 'comment_node_forum',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '676',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_test_content_type:label',
+  'objectid' => 'comment_node_test_content_type',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '677',
+  'textgroup' => 'field',
+  'context' => 'body:page:label',
+  'objectid' => 'page',
+  'type' => 'body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '678',
+  'textgroup' => 'field',
+  'context' => 'body:article:label',
+  'objectid' => 'article',
+  'type' => 'body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '679',
+  'textgroup' => 'field',
+  'context' => 'body:blog:label',
+  'objectid' => 'blog',
+  'type' => 'body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '680',
+  'textgroup' => 'field',
+  'context' => 'body:book:label',
+  'objectid' => 'book',
+  'type' => 'body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '681',
+  'textgroup' => 'field',
+  'context' => 'body:forum:label',
+  'objectid' => 'forum',
+  'type' => 'body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '682',
+  'textgroup' => 'field',
+  'context' => 'field_tags:article:label',
+  'objectid' => 'article',
+  'type' => 'field_tags',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '683',
+  'textgroup' => 'field',
+  'context' => 'field_tags:article:description',
+  'objectid' => 'article',
+  'type' => 'field_tags',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '684',
+  'textgroup' => 'field',
+  'context' => 'field_image:article:label',
+  'objectid' => 'article',
+  'type' => 'field_image',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '685',
+  'textgroup' => 'field',
+  'context' => 'field_image:article:description',
+  'objectid' => 'article',
+  'type' => 'field_image',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '686',
+  'textgroup' => 'field',
+  'context' => 'taxonomy_forums:forum:label',
+  'objectid' => 'forum',
+  'type' => 'taxonomy_forums',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '687',
+  'textgroup' => 'field',
+  'context' => 'field_boolean:#allowed_values:0',
+  'objectid' => '#allowed_values',
+  'type' => 'field_boolean',
+  'property' => '0',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '688',
+  'textgroup' => 'field',
+  'context' => 'field_boolean:#allowed_values:1',
+  'objectid' => '#allowed_values',
+  'type' => 'field_boolean',
+  'property' => '1',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '689',
+  'textgroup' => 'field',
+  'context' => 'field_boolean:test_content_type:label',
+  'objectid' => 'test_content_type',
+  'type' => 'field_boolean',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '754',
+  'textgroup' => 'field',
+  'context' => 'subject_field:comment_node_article:label',
+  'objectid' => 'comment_node_article',
+  'type' => 'subject_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '755',
+  'textgroup' => 'field',
+  'context' => 'subject_field:comment_node_test_content_type:label',
+  'objectid' => 'comment_node_test_content_type',
+  'type' => 'subject_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '756',
+  'textgroup' => 'field',
+  'context' => 'name_field:test_vocabulary:label',
+  'objectid' => 'test_vocabulary',
+  'type' => 'name_field',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '758',
+  'textgroup' => 'field',
+  'context' => 'field_vocab_localize:article:label',
+  'objectid' => 'article',
+  'type' => 'field_vocab_localize',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '759',
+  'textgroup' => 'field',
+  'context' => 'field_vocab_translate:article:label',
+  'objectid' => 'article',
+  'type' => 'field_vocab_translate',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '760',
+  'textgroup' => 'field',
+  'context' => 'field_vocab_fixed:article:label',
+  'objectid' => 'article',
+  'type' => 'field_vocab_fixed',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '761',
+  'textgroup' => 'field',
+  'context' => 'field_color:#allowed_values:0',
+  'objectid' => '#allowed_values',
+  'type' => 'field_color',
+  'property' => '0',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '762',
+  'textgroup' => 'field',
+  'context' => 'field_color:#allowed_values:1',
+  'objectid' => '#allowed_values',
+  'type' => 'field_color',
+  'property' => '1',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '763',
+  'textgroup' => 'field',
+  'context' => 'field_color:#allowed_values:2',
+  'objectid' => '#allowed_values',
+  'type' => 'field_color',
+  'property' => '2',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '764',
+  'textgroup' => 'field',
+  'context' => 'field_color:blog:label',
+  'objectid' => 'blog',
+  'type' => 'field_color',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '765',
+  'textgroup' => 'field',
+  'context' => 'field_rating:#allowed_values:1',
+  'objectid' => '#allowed_values',
+  'type' => 'field_rating',
+  'property' => '1',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '766',
+  'textgroup' => 'field',
+  'context' => 'field_rating:#allowed_values:2',
+  'objectid' => '#allowed_values',
+  'type' => 'field_rating',
+  'property' => '2',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '767',
+  'textgroup' => 'field',
+  'context' => 'field_rating:#allowed_values:3',
+  'objectid' => '#allowed_values',
+  'type' => 'field_rating',
+  'property' => '3',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '768',
+  'textgroup' => 'field',
+  'context' => 'field_rating:blog:label',
+  'objectid' => 'blog',
+  'type' => 'field_rating',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '780',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:2:name',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '2',
+  'format' => '',
+))
+->values(array(
+  'lid' => '781',
+  'textgroup' => 'taxonomy',
+  'context' => 'vocabulary:2:description',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'description',
+  'objectindex' => '2',
+  'format' => '',
+))
+->values(array(
+  'lid' => '794',
+  'textgroup' => 'field',
+  'context' => 'taxonomy_forums:forum:label',
+  'objectid' => 'forum',
+  'type' => 'taxonomy_forums',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '795',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_article:label',
+  'objectid' => 'comment_node_article',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '796',
+  'textgroup' => 'field',
+  'context' => 'comment_body:comment_node_blog:label',
+  'objectid' => 'comment_node_blog',
+  'type' => 'comment_body',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '194',
+  'textgroup' => 'field',
+  'context' => 'field_training:vocabfixed:label',
+  'objectid' => 'vocabfixed',
+  'type' => 'field_training',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '195',
+  'textgroup' => 'field',
+  'context' => 'field_sector:vocablocalized:label',
+  'objectid' => 'vocablocalized',
+  'type' => 'field_sector',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '196',
+  'textgroup' => 'field',
+  'context' => 'field_chancellor:vocabtranslate:label',
+  'objectid' => 'vocabtranslate',
+  'type' => 'field_chancellor',
+  'property' => 'label',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '800',
+  'textgroup' => 'menu',
+  'context' => 'menu:main-menu:title',
+  'objectid' => 'main-menu',
+  'type' => 'menu',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '801',
+  'textgroup' => 'menu',
+  'context' => 'menu:main-menu:description',
+  'objectid' => 'main-menu',
+  'type' => 'menu',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '802',
+  'textgroup' => 'menu',
+  'context' => 'menu:menu-test-menu:description',
+  'objectid' => 'menu-test-menu',
+  'type' => 'menu',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '797',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:25:name',
+  'objectid' => '25',
+  'type' => 'term',
+  'property' => 'name',
+  'objectindex' => '25',
+  'format' => '',
+))
+->values(array(
+  'lid' => '798',
+  'textgroup' => 'taxonomy',
+  'context' => 'term:25:description',
+  'objectid' => '25',
+  'type' => 'term',
+  'property' => 'description',
+  'objectindex' => '25',
+  'format' => '',
+))
+  ->values(array(
+  'lid' => '803',
+  'textgroup' => 'menu',
+  'context' => 'item:467:title',
+  'objectid' => '467',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '467',
+  'format' => '',
+))
+->values(array(
+  'lid' => '804',
+  'textgroup' => 'menu',
+  'context' => 'item:467:description',
+  'objectid' => '467',
+  'type' => 'item',
+  'property' => 'description',
+  'objectindex' => '467',
+  'format' => '',
+))
+->values(array(
+  'lid' => '805',
+  'textgroup' => 'field',
+  'context' => 'field_checkbox:#allowed_values:0',
+  'objectid' => '#allowed_values',
+  'type' => 'field_checkbox',
+  'property' => '0',
+  'objectindex' => '0',
+  'format' => '',
+))
+->values(array(
+  'lid' => '806',
+  'textgroup' => 'field',
+  'context' => 'field_checkbox:#allowed_values:1',
+  'objectid' => '#allowed_values',
+  'type' => 'field_checkbox',
+  'property' => '1',
+  'objectindex' => '0',
+  '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->insert('i18n_translation_set')
+->fields(array(
+  'tsid',
+  'title',
+  'type',
+  'bundle',
+  'master_id',
+  'status',
+  'created',
+  'changed',
+))
+->values(array(
+  'tsid' => '1',
+  'title' => '',
+  'type' => 'taxonomy_term',
+  'bundle' => 'vocabtranslate',
+  'master_id' => '0',
+  'status' => '0',
+  'created' => '1550964799',
+  'changed' => '1550964799',
+))
+->execute();
+$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(
+      array(
+        'textgroup',
+        '191',
+      ),
+      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' => 'none',
+))
+->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' => '57',
+  'location' => 'blocks:block:1:title',
+  'textgroup' => 'blocks',
+  'source' => 'Mildly amusing limerick of the day',
+  'context' => 'block:1:title',
+  'version' => '1',
+))
+->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' => '60',
+  'location' => 'blocks:block:1:body',
+  'textgroup' => 'blocks',
+  'source' => "A fellow jumped off a high wall\r\nAnd had a most terrible fall\r\nHe went back to bed\r\nWith a bump on his head\r\nThat's why you don't jump off a wall",
+  'context' => 'block:1:body',
+  'version' => '1',
+))
+->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' => '76',
+  'location' => 'blocks:user:login:title',
+  'textgroup' => 'blocks',
+  'source' => 'User login title',
+  'context' => 'user:login:title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '77',
+  'location' => 'taxonomy:term:20:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'DS9',
+  'context' => 'term:20:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '78',
+  'location' => 'taxonomy:term:20:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Terok Nor',
+  'context' => 'term:20:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '79',
+  'location' => 'taxonomy:term:19:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Jupiter Station',
+  'context' => 'term:19:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '80',
+  'location' => 'taxonomy:term:19:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Holographic research.',
+  'context' => 'term:19:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '81',
+  'location' => 'taxonomy:vocabulary:2:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Sujet de discussion',
+  'context' => 'vocabulary:2:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '82',
+  'location' => 'taxonomy:vocabulary:2:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Forum navigation vocabulary',
+  'context' => 'vocabulary:2:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '83',
+  'location' => 'taxonomy:vocabulary:1:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Tags',
+  'context' => 'vocabulary:1:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '84',
+  'location' => 'taxonomy:vocabulary:1:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Use tags to group articles on similar topics into categories.',
+  'context' => 'vocabulary:1:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '85',
+  'location' => 'taxonomy:vocabulary:3:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Test Vocabulary',
+  'context' => 'vocabulary:3:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '86',
+  'location' => 'taxonomy:vocabulary:3:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'This is the vocabulary description',
+  'context' => 'vocabulary:3:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '87',
+  'location' => 'taxonomy:vocabulary:7:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'VocabFixed',
+  'context' => 'vocabulary:7:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '88',
+  'location' => 'taxonomy:vocabulary:7:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Vocabulary fixed option',
+  'context' => 'vocabulary:7:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '89',
+  'location' => 'taxonomy:vocabulary:5:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'VocabLocalized',
+  'context' => 'vocabulary:5:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '90',
+  'location' => 'taxonomy:vocabulary:5:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Vocabulary localize option',
+  'context' => 'vocabulary:5:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '91',
+  'location' => 'taxonomy:vocabulary:6:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'VocabTranslate',
+  'context' => 'vocabulary:6:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '92',
+  'location' => 'taxonomy:vocabulary:6:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'Vocabulary translate option',
+  'context' => 'vocabulary:6:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '93',
+  'location' => 'taxonomy:vocabulary:4:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary name clearly different than machine name and much longer than thirty two characters',
+  'context' => 'vocabulary:4:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '94',
+  'location' => 'taxonomy:vocabulary:4:description',
+  'textgroup' => 'taxonomy',
+  'source' => 'description of vocabulary name much longer than thirty two characters',
+  'context' => 'vocabulary:4: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' => '57',
+  'translation' => 'fr - Mildly amusing limerick of the day',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '60',
+  'translation' => "fr - A fellow jumped off a high wall\r\nAnd had a most terrible fall\r\nHe went back to bed\r\nWith a bump on his head\r\nThat's why you don't jump off a wall",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '76',
+  'translation' => 'fr - User login title',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '77',
+  'translation' => 'fr - DS9 (localized)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '78',
+  'translation' => 'fr - Terok Nor (localized)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '87',
+  'translation' => 'fr - VocabFixed',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '89',
+  'translation' => 'fr - VocabLocalized',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '90',
+  'translation' => 'fr - Vocabulary localize option',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '97',
+  'translation' => 'fr - The email help text.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '113',
+  'translation' => 'fr - Link',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '1',
+))
+->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' => '1',
+))
+->values(array(
+  'lid' => '684',
+  'translation' => 'fr - Image',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '1',
+))
+->values(array(
+  'lid' => '761',
+  'translation' => 'Verte',
+  'language' => 'fr',
+  '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' => '763',
+  'translation' => 'Blanche',
+  'language' => 'fr',
+  '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' => '765',
+  'translation' => 'Haute',
+  'language' => 'fr',
+  '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' => '767',
+  'translation' => 'Faible',
+  'language' => 'fr',
+  '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' => '57',
+  'translation' => 'is - Mildly amusing limerick of the day',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '79',
+  'translation' => 'Jupiter Station',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '80',
+  'translation' => 'is - Holographic research. (localized)',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '89',
+  'translation' => 'is - VocabLocalized',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '90',
+  'translation' => 'is - Vocabulary localize option',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '91',
+  'translation' => 'is - VocabTranslate',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '92',
+  'translation' => 'is - Vocabulary translate option',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '95',
+  'translation' => 'is - Some helpful text.',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '96',
+  'translation' => 'is - Email',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '97',
+  'translation' => 'is - The email help text.',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '128',
+  'translation' => 'is - Term Reference',
+  'language' => 'is',
+  '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' => 'Grænn',
+  'language' => 'is',
+  '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' => 'Hvítur',
+  'language' => 'is',
+  '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' => 'Hár',
+  'language' => 'is',
+  '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' => 'Lágt',
+  'language' => 'is',
+  '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' => '800',
+  'translation' => 'is - Main menu',
+  'language' => 'is',
+  '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' => '800',
+  'translation' => 'fr - Main menu',
+  'language' => 'fr',
+  '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' => '802',
+  'translation' => 'fr - Test menu description',
+  'language' => 'fr',
+  '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' => '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' => 'is - Stop',
+  'language' => 'is',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '806',
+  'translation' => 'is - Go',
+  'language' => 'is',
+  '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' => '806',
+  'translation' => 'Go',
+  'language' => 'fr',
+  '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',
+    ),
+    '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(
+    'menu_name',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('menu_custom')
+->fields(array(
+  'menu_name',
+  'title',
+  'description',
+  'language',
+  'i18n_mode',
+))
+->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.',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'title' => 'Management',
+  'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'menu_name' => 'menu-fixedlang',
+  'title' => 'FixedLang',
+  'description' => '',
+  'language' => 'is',
+  'i18n_mode' => '2',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'title' => 'Test Menu',
+  'description' => 'Test menu description.',
+  'language' => 'und',
+  'i18n_mode' => '5',
+))
+->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.',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->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.",
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->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',
+    ),
+    '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(
+    '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',
+  'language',
+  'i18n_tsid',
+))
+->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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '47',
+  'plid' => '18',
+  'link_path' => 'admin/reports/dblog',
+  'router_path' => 'admin/reports/dblog',
+  'link_title' => 'Recent log messages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '47',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '54',
+  'plid' => '18',
+  'link_path' => 'admin/reports/access-denied',
+  'router_path' => 'admin/reports/access-denied',
+  'link_title' => "Top 'access denied' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '54',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '55',
+  'plid' => '18',
+  'link_path' => 'admin/reports/page-not-found',
+  'router_path' => 'admin/reports/page-not-found',
+  'link_title' => "Top 'page not found' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '55',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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' => '1',
+  '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '75',
+  'plid' => '18',
+  'link_path' => 'admin/reports/event/%',
+  'router_path' => 'admin/reports/event/%',
+  'link_title' => 'Details',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '75',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '174',
+  'plid' => '172',
+  'link_path' => 'search/user',
+  'router_path' => 'search/user',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '172',
+  'p2' => '174',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '175',
+  'plid' => '1',
+  'link_path' => 'admin/help',
+  'router_path' => 'admin/help',
+  'link_title' => 'Help',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Reference for usage, configuration, and modules.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '9',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '179',
+  'plid' => '16',
+  'link_path' => 'user/%/shortcuts',
+  'router_path' => 'user/%/shortcuts',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '16',
+  'p2' => '179',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '181',
+  'plid' => '18',
+  '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' => '1',
+  'p2' => '18',
+  'p3' => '181',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '182',
+  'plid' => '174',
+  'link_path' => 'search/user/%',
+  'router_path' => 'search/user/%',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '172',
+  'p2' => '174',
+  'p3' => '182',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '183',
+  'plid' => '175',
+  'link_path' => 'admin/help/block',
+  'router_path' => 'admin/help/block',
+  'link_title' => 'block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '183',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '184',
+  'plid' => '175',
+  'link_path' => 'admin/help/color',
+  'router_path' => 'admin/help/color',
+  'link_title' => 'color',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '184',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '185',
+  'plid' => '175',
+  'link_path' => 'admin/help/comment',
+  'router_path' => 'admin/help/comment',
+  'link_title' => 'comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '185',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '186',
+  'plid' => '175',
+  'link_path' => 'admin/help/contextual',
+  'router_path' => 'admin/help/contextual',
+  'link_title' => 'contextual',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '186',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '188',
+  'plid' => '175',
+  'link_path' => 'admin/help/dblog',
+  'router_path' => 'admin/help/dblog',
+  'link_title' => 'dblog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '188',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '189',
+  'plid' => '175',
+  'link_path' => 'admin/help/field',
+  'router_path' => 'admin/help/field',
+  'link_title' => 'field',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '189',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '190',
+  'plid' => '175',
+  'link_path' => 'admin/help/field_sql_storage',
+  'router_path' => 'admin/help/field_sql_storage',
+  'link_title' => 'field_sql_storage',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '190',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '191',
+  'plid' => '175',
+  'link_path' => 'admin/help/field_ui',
+  'router_path' => 'admin/help/field_ui',
+  'link_title' => 'field_ui',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '191',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '192',
+  'plid' => '175',
+  'link_path' => 'admin/help/file',
+  'router_path' => 'admin/help/file',
+  'link_title' => 'file',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '192',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '193',
+  'plid' => '175',
+  'link_path' => 'admin/help/filter',
+  'router_path' => 'admin/help/filter',
+  'link_title' => 'filter',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '193',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '194',
+  'plid' => '175',
+  'link_path' => 'admin/help/help',
+  'router_path' => 'admin/help/help',
+  'link_title' => 'help',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '194',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '195',
+  'plid' => '175',
+  'link_path' => 'admin/help/image',
+  'router_path' => 'admin/help/image',
+  'link_title' => 'image',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '195',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '196',
+  'plid' => '175',
+  'link_path' => 'admin/help/list',
+  'router_path' => 'admin/help/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' => '175',
+  'p3' => '196',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '197',
+  'plid' => '175',
+  'link_path' => 'admin/help/menu',
+  'router_path' => 'admin/help/menu',
+  'link_title' => 'menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '197',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '198',
+  'plid' => '175',
+  'link_path' => 'admin/help/node',
+  'router_path' => 'admin/help/node',
+  'link_title' => 'node',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '198',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '199',
+  'plid' => '175',
+  'link_path' => 'admin/help/number',
+  'router_path' => 'admin/help/number',
+  'link_title' => 'number',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '199',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '200',
+  'plid' => '175',
+  'link_path' => 'admin/help/options',
+  'router_path' => 'admin/help/options',
+  'link_title' => 'options',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '200',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '202',
+  'plid' => '175',
+  'link_path' => 'admin/help/path',
+  'router_path' => 'admin/help/path',
+  'link_title' => 'path',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '202',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '203',
+  'plid' => '175',
+  'link_path' => 'admin/help/rdf',
+  'router_path' => 'admin/help/rdf',
+  'link_title' => 'rdf',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '203',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '204',
+  'plid' => '175',
+  'link_path' => 'admin/help/search',
+  'router_path' => 'admin/help/search',
+  'link_title' => 'search',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '204',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '205',
+  'plid' => '175',
+  'link_path' => 'admin/help/shortcut',
+  'router_path' => 'admin/help/shortcut',
+  'link_title' => 'shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '205',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '206',
+  'plid' => '175',
+  'link_path' => 'admin/help/system',
+  'router_path' => 'admin/help/system',
+  'link_title' => 'system',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '206',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '207',
+  'plid' => '175',
+  'link_path' => 'admin/help/taxonomy',
+  'router_path' => 'admin/help/taxonomy',
+  'link_title' => 'taxonomy',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '207',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '208',
+  'plid' => '175',
+  'link_path' => 'admin/help/text',
+  'router_path' => 'admin/help/text',
+  'link_title' => 'text',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '208',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '209',
+  'plid' => '175',
+  'link_path' => 'admin/help/user',
+  'router_path' => 'admin/help/user',
+  'link_title' => 'user',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '209',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '217',
+  'plid' => '57',
+  'link_path' => 'admin/config/user-interface/shortcut',
+  'router_path' => 'admin/config/user-interface/shortcut',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Add and modify shortcut sets.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '57',
+  'p4' => '217',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '220',
+  'plid' => '217',
+  'link_path' => 'admin/config/user-interface/shortcut/add-set',
+  'router_path' => 'admin/config/user-interface/shortcut/add-set',
+  'link_title' => 'Add shortcut set',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '220',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '225',
+  'plid' => '217',
+  'link_path' => 'admin/config/user-interface/shortcut/%',
+  'router_path' => 'admin/config/user-interface/shortcut/%',
+  'link_title' => 'Edit shortcuts',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '225',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '229',
+  'plid' => '225',
+  'link_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'router_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'link_title' => 'Add shortcut',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '225',
+  'p6' => '229',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '231',
+  'plid' => '225',
+  'link_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'link_title' => 'Delete shortcut set',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '225',
+  'p6' => '231',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '233',
+  'plid' => '225',
+  'link_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'router_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'link_title' => 'Edit set name',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '225',
+  'p6' => '233',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '234',
+  'plid' => '217',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%',
+  'link_title' => 'Edit shortcut',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '234',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '236',
+  'plid' => '225',
+  'link_path' => 'admin/config/user-interface/shortcut/%/links',
+  'router_path' => 'admin/config/user-interface/shortcut/%/links',
+  'link_title' => 'List links',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '225',
+  'p6' => '236',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '239',
+  'plid' => '234',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'link_title' => 'Delete shortcut',
+  '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' => '57',
+  'p4' => '217',
+  'p5' => '234',
+  'p6' => '239',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '243',
+  'plid' => '0',
+  'link_path' => 'node/add',
+  'router_path' => 'node/add',
+  'link_title' => 'Add content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '243',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '244',
+  'plid' => '0',
+  'link_path' => 'admin/content',
+  'router_path' => 'admin/content',
+  'link_title' => 'Find content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-19',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '244',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '248',
+  'plid' => '175',
+  'link_path' => 'admin/help/toolbar',
+  'router_path' => 'admin/help/toolbar',
+  'link_title' => 'toolbar',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '248',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '287',
+  'plid' => '18',
+  'link_path' => 'admin/reports/updates',
+  'router_path' => 'admin/reports/updates',
+  'link_title' => 'Available updates',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '287',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '288',
+  'plid' => '15',
+  'link_path' => 'admin/modules/install',
+  'router_path' => 'admin/modules/install',
+  'link_title' => 'Install new module',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '15',
+  'p3' => '288',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '289',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/install',
+  'router_path' => 'admin/appearance/install',
+  'link_title' => 'Install new theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '289',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '290',
+  'plid' => '15',
+  'link_path' => 'admin/modules/update',
+  'router_path' => 'admin/modules/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '15',
+  'p3' => '290',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '291',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/update',
+  'router_path' => 'admin/appearance/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '291',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '292',
+  'plid' => '175',
+  'link_path' => 'admin/help/update',
+  'router_path' => 'admin/help/update',
+  'link_title' => 'update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '292',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '293',
+  'plid' => '287',
+  'link_path' => 'admin/reports/updates/list',
+  'router_path' => 'admin/reports/updates/list',
+  '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' => '18',
+  'p3' => '287',
+  'p4' => '293',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '294',
+  'plid' => '287',
+  'link_path' => 'admin/reports/updates/settings',
+  'router_path' => 'admin/reports/updates/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '50',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '287',
+  'p4' => '294',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '295',
+  'plid' => '287',
+  'link_path' => 'admin/reports/updates/install',
+  'router_path' => 'admin/reports/updates/install',
+  'link_title' => 'Install new module or theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '287',
+  'p4' => '295',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '296',
+  'plid' => '287',
+  'link_path' => 'admin/reports/updates/update',
+  'router_path' => 'admin/reports/updates/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '287',
+  'p4' => '296',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '297',
+  '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' => '297',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '298',
+  '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' => '298',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '299',
+  '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' => '299',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '300',
+  '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' => '300',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '301',
+  'plid' => '297',
+  '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' => '297',
+  'p6' => '301',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '302',
+  'plid' => '298',
+  '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' => '298',
+  'p6' => '302',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '303',
+  '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' => '303',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '304',
+  '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' => '304',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '305',
+  'plid' => '297',
+  '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' => '297',
+  'p6' => '305',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '306',
+  'plid' => '298',
+  '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' => '298',
+  'p6' => '306',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '307',
+  'plid' => '299',
+  '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' => '299',
+  'p6' => '307',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '308',
+  'plid' => '300',
+  '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' => '300',
+  'p6' => '308',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '309',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '309',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '310',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '310',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '311',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '311',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '312',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '312',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '313',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '313',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '314',
+  'plid' => '303',
+  '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' => '303',
+  'p6' => '314',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '315',
+  'plid' => '304',
+  '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' => '304',
+  'p6' => '315',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '316',
+  'plid' => '307',
+  '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' => '299',
+  'p6' => '307',
+  'p7' => '316',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '317',
+  'plid' => '307',
+  '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' => '299',
+  'p6' => '307',
+  'p7' => '317',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '318',
+  'plid' => '307',
+  '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' => '299',
+  'p6' => '307',
+  'p7' => '318',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '319',
+  'plid' => '307',
+  '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' => '299',
+  'p6' => '307',
+  'p7' => '319',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '320',
+  'plid' => '308',
+  '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' => '300',
+  'p6' => '308',
+  'p7' => '320',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '321',
+  'plid' => '308',
+  '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' => '300',
+  'p6' => '308',
+  'p7' => '321',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '322',
+  'plid' => '308',
+  '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' => '300',
+  'p6' => '308',
+  'p7' => '322',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '323',
+  'plid' => '308',
+  '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' => '300',
+  'p6' => '308',
+  'p7' => '323',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '324',
+  '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' => '324',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '325',
+  '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' => '325',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '326',
+  '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' => '326',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '327',
+  'plid' => '315',
+  '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' => '304',
+  'p6' => '315',
+  'p7' => '327',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '328',
+  'plid' => '315',
+  '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' => '304',
+  'p6' => '315',
+  'p7' => '328',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '329',
+  'plid' => '315',
+  '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' => '304',
+  'p6' => '315',
+  'p7' => '329',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '330',
+  'plid' => '315',
+  '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' => '304',
+  'p6' => '315',
+  'p7' => '330',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '331',
+  'plid' => '326',
+  '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' => '326',
+  'p7' => '331',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '332',
+  'plid' => '326',
+  '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' => '326',
+  'p7' => '332',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '333',
+  'plid' => '326',
+  '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' => '326',
+  'p7' => '333',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '334',
+  'plid' => '326',
+  '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' => '326',
+  'p7' => '334',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '335',
+  'plid' => '0',
+  'link_path' => 'blog',
+  'router_path' => 'blog',
+  'link_title' => 'Blogs',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '335',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '336',
+  'plid' => '0',
+  'link_path' => 'book',
+  'router_path' => 'book',
+  'link_title' => 'Books',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '336',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '337',
+  'plid' => '0',
+  'link_path' => 'contact',
+  'router_path' => 'contact',
+  'link_title' => 'Contact',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '337',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '338',
+  'plid' => '0',
+  'link_path' => 'aggregator',
+  'router_path' => 'aggregator',
+  'link_title' => 'Feed aggregator',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '340',
+  'plid' => '0',
+  'link_path' => 'tracker',
+  'router_path' => 'tracker',
+  'link_title' => 'Recent content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '340',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '341',
+  'plid' => '340',
+  'link_path' => 'tracker/all',
+  'router_path' => 'tracker/all',
+  'link_title' => 'All recent content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '340',
+  'p2' => '341',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '342',
+  'plid' => '338',
+  'link_path' => 'aggregator/categories',
+  'router_path' => 'aggregator/categories',
+  'link_title' => 'Categories',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '342',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '344',
+  'plid' => '335',
+  'link_path' => 'blog/%',
+  'router_path' => 'blog/%',
+  'link_title' => 'My blog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '335',
+  'p2' => '344',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '345',
+  'plid' => '340',
+  'link_path' => 'tracker/%',
+  'router_path' => 'tracker/%',
+  'link_title' => 'My recent content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '340',
+  'p2' => '345',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '346',
+  'plid' => '338',
+  'link_path' => 'aggregator/sources',
+  'router_path' => 'aggregator/sources',
+  'link_title' => 'Sources',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '346',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '347',
+  'plid' => '342',
+  'link_path' => 'aggregator/categories/%',
+  'router_path' => 'aggregator/categories/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '342',
+  'p3' => '347',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '348',
+  'plid' => '346',
+  'link_path' => 'aggregator/sources/%',
+  'router_path' => 'aggregator/sources/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '346',
+  'p3' => '348',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '349',
+  'plid' => '6',
+  'link_path' => 'node/add/blog',
+  'router_path' => 'node/add/blog',
+  'link_title' => 'Blog entry',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:58:"Use for multi-user blogs. Every user gets a personal blog.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '349',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '350',
+  'plid' => '6',
+  'link_path' => 'node/add/book',
+  'router_path' => 'node/add/book',
+  'link_title' => 'Book page',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:87:"<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '350',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '351',
+  'plid' => '9',
+  'link_path' => 'admin/content/book',
+  'router_path' => 'admin/content/book',
+  'link_title' => 'Books',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '351',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '352',
+  'plid' => '16',
+  'link_path' => 'user/%/contact',
+  'router_path' => 'user/%/contact',
+  'link_title' => 'Contact',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '16',
+  'p2' => '352',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '353',
+  'plid' => '20',
+  'link_path' => 'admin/structure/contact',
+  'router_path' => 'admin/structure/contact',
+  'link_title' => 'Contact form',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:71:"Create a system contact form and set up categories for the form to use.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '20',
+  'p3' => '353',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '358',
+  'plid' => '5',
+  'link_path' => 'node/%/outline',
+  'router_path' => 'node/%/outline',
+  'link_title' => 'Outline',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '358',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '359',
+  'plid' => '18',
+  'link_path' => 'admin/reports/hits',
+  'router_path' => 'admin/reports/hits',
+  'link_title' => 'Recent hits',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '359',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '360',
+  'plid' => '18',
+  'link_path' => 'admin/reports/pages',
+  'router_path' => 'admin/reports/pages',
+  'link_title' => 'Top pages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '360',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '361',
+  'plid' => '18',
+  'link_path' => 'admin/reports/referrers',
+  'router_path' => 'admin/reports/referrers',
+  'link_title' => 'Top referrers',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '361',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '362',
+  'plid' => '18',
+  'link_path' => 'admin/reports/visitors',
+  'router_path' => 'admin/reports/visitors',
+  'link_title' => 'Top visitors',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '362',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '363',
+  'plid' => '5',
+  'link_path' => 'node/%/track',
+  'router_path' => 'node/%/track',
+  'link_title' => 'Track',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '363',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '364',
+  'plid' => '16',
+  'link_path' => 'user/%/track',
+  'router_path' => 'user/%/track',
+  'link_title' => 'Track',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '16',
+  'p2' => '364',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '366',
+  'plid' => '20',
+  'link_path' => 'admin/structure/trigger',
+  'router_path' => 'admin/structure/trigger',
+  'link_title' => 'Triggers',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Configure when to execute actions.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '20',
+  'p3' => '366',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '369',
+  'plid' => '175',
+  'link_path' => 'admin/help/aggregator',
+  'router_path' => 'admin/help/aggregator',
+  'link_title' => 'aggregator',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '369',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '370',
+  'plid' => '175',
+  'link_path' => 'admin/help/blog',
+  'router_path' => 'admin/help/blog',
+  'link_title' => 'blog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '370',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '371',
+  'plid' => '175',
+  'link_path' => 'admin/help/book',
+  'router_path' => 'admin/help/book',
+  'link_title' => 'book',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '371',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '372',
+  'plid' => '175',
+  'link_path' => 'admin/help/contact',
+  'router_path' => 'admin/help/contact',
+  'link_title' => 'contact',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '372',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '373',
+  'plid' => '175',
+  'link_path' => 'admin/help/date',
+  'router_path' => 'admin/help/date',
+  'link_title' => 'date',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '373',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '374',
+  'plid' => '175',
+  'link_path' => 'admin/help/forum',
+  'router_path' => 'admin/help/forum',
+  'link_title' => 'forum',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '374',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '375',
+  'plid' => '175',
+  'link_path' => 'admin/help/locale',
+  'router_path' => 'admin/help/locale',
+  'link_title' => 'locale',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '375',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '377',
+  'plid' => '175',
+  'link_path' => 'admin/help/simpletest',
+  'router_path' => 'admin/help/simpletest',
+  'link_title' => 'simpletest',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '377',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '378',
+  'plid' => '175',
+  'link_path' => 'admin/help/statistics',
+  'router_path' => 'admin/help/statistics',
+  'link_title' => 'statistics',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '378',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '379',
+  'plid' => '175',
+  'link_path' => 'admin/help/syslog',
+  'router_path' => 'admin/help/syslog',
+  'link_title' => 'syslog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '379',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '380',
+  'plid' => '175',
+  'link_path' => 'admin/help/tracker',
+  'router_path' => 'admin/help/tracker',
+  'link_title' => 'tracker',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '380',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '381',
+  'plid' => '175',
+  'link_path' => 'admin/help/translation',
+  'router_path' => 'admin/help/translation',
+  'link_title' => 'translation',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '381',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '382',
+  'plid' => '175',
+  'link_path' => 'admin/help/trigger',
+  'router_path' => 'admin/help/trigger',
+  'link_title' => 'trigger',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '382',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '383',
+  'plid' => '347',
+  'link_path' => 'aggregator/categories/%/categorize',
+  'router_path' => 'aggregator/categories/%/categorize',
+  'link_title' => 'Categorize',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '342',
+  'p3' => '347',
+  'p4' => '383',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '384',
+  'plid' => '348',
+  'link_path' => 'aggregator/sources/%/categorize',
+  'router_path' => 'aggregator/sources/%/categorize',
+  'link_title' => 'Categorize',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '346',
+  'p3' => '348',
+  'p4' => '384',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '385',
+  'plid' => '347',
+  'link_path' => 'aggregator/categories/%/configure',
+  'router_path' => 'aggregator/categories/%/configure',
+  'link_title' => 'Configure',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '342',
+  'p3' => '347',
+  'p4' => '385',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '386',
+  'plid' => '348',
+  'link_path' => 'aggregator/sources/%/configure',
+  'router_path' => 'aggregator/sources/%/configure',
+  'link_title' => 'Configure',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '346',
+  'p3' => '348',
+  'p4' => '386',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '387',
+  'plid' => '347',
+  'link_path' => 'aggregator/categories/%/view',
+  'router_path' => 'aggregator/categories/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '342',
+  'p3' => '347',
+  'p4' => '387',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '388',
+  'plid' => '348',
+  'link_path' => 'aggregator/sources/%/view',
+  'router_path' => 'aggregator/sources/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '338',
+  'p2' => '346',
+  'p3' => '348',
+  'p4' => '388',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '389',
+  'plid' => '353',
+  'link_path' => 'admin/structure/contact/add',
+  'router_path' => 'admin/structure/contact/add',
+  'link_title' => 'Add category',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '20',
+  'p3' => '353',
+  'p4' => '389',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '391',
+  'plid' => '18',
+  'link_path' => 'admin/reports/access/%',
+  'router_path' => 'admin/reports/access/%',
+  'link_title' => 'Details',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '391',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '392',
+  'plid' => '33',
+  'link_path' => 'admin/config/content/email',
+  'router_path' => 'admin/config/content/email',
+  'link_title' => 'Email Contact Form Settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '33',
+  'p4' => '392',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '393',
+  'plid' => '60',
+  'link_path' => 'admin/config/services/aggregator',
+  'router_path' => 'admin/config/services/aggregator',
+  'link_title' => 'Feed aggregator',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '60',
+  'p4' => '393',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '396',
+  'plid' => '351',
+  'link_path' => 'admin/content/book/list',
+  'router_path' => 'admin/content/book/list',
+  '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' => '9',
+  'p3' => '351',
+  'p4' => '396',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '399',
+  'plid' => '358',
+  'link_path' => 'node/%/outline/remove',
+  'router_path' => 'node/%/outline/remove',
+  'link_title' => 'Remove from outline',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '358',
+  'p3' => '399',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '400',
+  'plid' => '351',
+  'link_path' => 'admin/content/book/settings',
+  'router_path' => 'admin/content/book/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '8',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '351',
+  'p4' => '400',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '402',
+  'plid' => '53',
+  'link_path' => 'admin/config/system/statistics',
+  'router_path' => 'admin/config/system/statistics',
+  'link_title' => 'Statistics',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Control details about what and how your site logs access statistics.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '402',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '405',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/comment',
+  'router_path' => 'admin/structure/trigger/comment',
+  'link_title' => 'Comment',
+  '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' => '366',
+  'p4' => '405',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '407',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/node',
+  'router_path' => 'admin/structure/trigger/node',
+  'link_title' => 'Node',
+  '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' => '366',
+  'p4' => '407',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '408',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/system',
+  'router_path' => 'admin/structure/trigger/system',
+  'link_title' => 'System',
+  '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' => '366',
+  'p4' => '408',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '409',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/taxonomy',
+  'router_path' => 'admin/structure/trigger/taxonomy',
+  'link_title' => 'Taxonomy',
+  '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' => '366',
+  'p4' => '409',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '410',
+  'plid' => '37',
+  'link_path' => 'admin/config/development/testing',
+  'router_path' => 'admin/config/development/testing',
+  'link_title' => 'Testing',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:122:"Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '37',
+  'p4' => '410',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '411',
+  'plid' => '364',
+  'link_path' => 'user/%/track/content',
+  'router_path' => 'user/%/track/content',
+  'link_title' => 'Track content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '16',
+  'p2' => '364',
+  'p3' => '411',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '412',
+  'plid' => '364',
+  'link_path' => 'user/%/track/navigation',
+  'router_path' => 'user/%/track/navigation',
+  'link_title' => 'Track page visits',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '16',
+  'p2' => '364',
+  'p3' => '412',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '414',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/unassign',
+  'router_path' => 'admin/structure/trigger/unassign',
+  'link_title' => 'Unassign',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Unassign an action from a trigger.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '20',
+  'p3' => '366',
+  'p4' => '414',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '416',
+  'plid' => '366',
+  'link_path' => 'admin/structure/trigger/user',
+  'router_path' => 'admin/structure/trigger/user',
+  'link_title' => 'User',
+  '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' => '366',
+  'p4' => '416',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '421',
+  'plid' => '353',
+  'link_path' => 'admin/structure/contact/delete/%',
+  'router_path' => 'admin/structure/contact/delete/%',
+  'link_title' => 'Delete contact',
+  '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' => '353',
+  'p4' => '421',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '423',
+  'plid' => '353',
+  'link_path' => 'admin/structure/contact/edit/%',
+  'router_path' => 'admin/structure/contact/edit/%',
+  'link_title' => 'Edit contact category',
+  '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' => '353',
+  'p4' => '423',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '426',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/list',
+  'router_path' => 'admin/config/services/aggregator/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' => '60',
+  'p4' => '393',
+  'p5' => '426',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '428',
+  'plid' => '410',
+  'link_path' => 'admin/config/development/testing/list',
+  'router_path' => 'admin/config/development/testing/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' => '37',
+  'p4' => '410',
+  'p5' => '428',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '431',
+  'plid' => '410',
+  'link_path' => 'admin/config/development/testing/settings',
+  'router_path' => 'admin/config/development/testing/settings',
+  'link_title' => 'Settings',
+  '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' => '37',
+  'p4' => '410',
+  'p5' => '431',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '432',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/settings',
+  'router_path' => 'admin/config/services/aggregator/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:129:"Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '60',
+  'p4' => '393',
+  'p5' => '432',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '437',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/add/category',
+  'router_path' => 'admin/config/services/aggregator/add/category',
+  'link_title' => 'Add category',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '437',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '438',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/add/feed',
+  'router_path' => 'admin/config/services/aggregator/add/feed',
+  'link_title' => 'Add feed',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '438',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '447',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/add/opml',
+  'router_path' => 'admin/config/services/aggregator/add/opml',
+  'link_title' => 'Import OPML',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '447',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '448',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/remove/%',
+  'router_path' => 'admin/config/services/aggregator/remove/%',
+  'link_title' => 'Remove items',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '448',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '450',
+  'plid' => '410',
+  'link_path' => 'admin/config/development/testing/results/%',
+  'router_path' => 'admin/config/development/testing/results/%',
+  'link_title' => 'Test result',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:21:"View result of tests.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '37',
+  'p4' => '410',
+  'p5' => '450',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '452',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/update/%',
+  'router_path' => 'admin/config/services/aggregator/update/%',
+  'link_title' => 'Update items',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '452',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '458',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/edit/category/%',
+  'router_path' => 'admin/config/services/aggregator/edit/category/%',
+  'link_title' => 'Edit category',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '458',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '459',
+  'plid' => '393',
+  'link_path' => 'admin/config/services/aggregator/edit/feed/%',
+  'router_path' => 'admin/config/services/aggregator/edit/feed/%',
+  'link_title' => 'Edit feed',
+  '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' => '60',
+  'p4' => '393',
+  'p5' => '459',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '462',
+  'plid' => '303',
+  'link_path' => 'admin/structure/types/manage/%/display/print',
+  'router_path' => 'admin/structure/types/manage/%/display/print',
+  'link_title' => 'Print',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '20',
+  'p3' => '34',
+  'p4' => '114',
+  'p5' => '303',
+  'p6' => '462',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '465',
+  'plid' => '6',
+  'link_path' => 'node/add/test-content-type',
+  'router_path' => 'node/add/test-content-type',
+  'link_title' => 'Test content type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:49:"This is the description of the test content type.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '465',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '466',
+  'plid' => '44',
+  'link_path' => 'admin/structure/menu/manage/menu-test-menu',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Test 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' => '466',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '467',
+  'plid' => '469',
+  'link_path' => 'http://google.com',
+  'router_path' => '',
+  'link_title' => 'Google',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:6:"Google";}}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '1',
+  'p1' => '469',
+  'p2' => '467',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '468',
+  'plid' => '0',
+  'link_path' => 'http://yahoo.com',
+  'router_path' => '',
+  'link_title' => 'Yahoo',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:19:"english description";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '468',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'en',
+  'i18n_tsid' => '1',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '469',
+  'plid' => '0',
+  'link_path' => 'http://bing.com',
+  'router_path' => '',
+  'link_title' => 'Bing',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:4:"Bing";}}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '469',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '470',
+  'plid' => '469',
+  'link_path' => 'http://ask.com',
+  'router_path' => '',
+  'link_title' => 'Ask',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '1',
+  'p1' => '469',
+  'p2' => '470',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-2',
+  'mlid' => '472',
+  'plid' => '0',
+  'link_path' => 'admin/help',
+  'router_path' => 'admin/help',
+  'link_title' => 'Help',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-49',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '472',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-2',
+  'mlid' => '473',
+  'plid' => '0',
+  'link_path' => 'admin/people',
+  'router_path' => 'admin/people',
+  'link_title' => 'People',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '473',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '475',
+  'plid' => '175',
+  'link_path' => 'admin/help/php',
+  'router_path' => 'admin/help/php',
+  'link_title' => 'php',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '175',
+  'p3' => '475',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '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',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '479',
+  'plid' => '0',
+  'link_path' => 'node/2',
+  'router_path' => 'node/%',
+  'link_title' => 'node link test',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:6:"node 2";}s:5:"query";a:2:{s:4:"name";s:6:"ferret";s:5:"color";s:6:"purple";}}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '479',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-1',
+  'mlid' => '480',
+  'plid' => '0',
+  'link_path' => 'node/4',
+  'router_path' => 'node/%',
+  'link_title' => 'Test top book title',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '480',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-1',
+  'mlid' => '481',
+  'plid' => '480',
+  'link_path' => 'node/6',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title child 1',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '480',
+  'p2' => '481',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-1',
+  'mlid' => '482',
+  'plid' => '481',
+  'link_path' => 'node/2',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title child 1.1',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '480',
+  'p2' => '481',
+  'p3' => '482',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'book-toc-2',
+  'mlid' => '483',
+  'plid' => '481',
+  'link_path' => 'node/1',
+  'router_path' => 'node/%',
+  'link_title' => 'Test book title 2',
+  'options' => 'a:0:{}',
+  'module' => 'book',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '480',
+  'p2' => '481',
+  'p3' => '483',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '484',
+  'plid' => '0',
+  'link_path' => 'node/2',
+  'router_path' => 'node/%',
+  'link_title' => 'The thing about Deep Space 9',
+  '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' => '9',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '484',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '485',
+  'plid' => '0',
+  'link_path' => 'node/3',
+  'router_path' => 'node/%',
+  'link_title' => 'is - The thing about Deep Space 9',
+  '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' => '10',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '485',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '486',
+  'plid' => '0',
+  'link_path' => 'node/4',
+  'router_path' => 'node/%',
+  'link_title' => 'is - The thing about Firefly',
+  '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' => '11',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '486',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '487',
+  'plid' => '0',
+  'link_path' => 'node/5',
+  'router_path' => 'node/%',
+  'link_title' => 'en - The thing about Firefly',
+  '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' => '12',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '487',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '491',
+  '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' => '491',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '700',
+  'plid' => '0',
+  'link_path' => 'http://yahoo.com',
+  'router_path' => '',
+  'link_title' => 'fr - Yahoo',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:16:"fr - description";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '468',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'fr',
+  'i18n_tsid' => '1',
+))
+->values(array(
+  'menu_name' => 'menu-test-menu',
+  'mlid' => '701',
+  'plid' => '0',
+  'link_path' => 'http://yahoo.com',
+  'router_path' => '',
+  'link_title' => 'is - Yahoo',
+  'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:16:"is - description";}s:5:"alter";b:1;}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '468',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+  'language' => 'is',
+  'i18n_tsid' => '1',
+))
+->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/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Install new theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:17:{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.40\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";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:1444866674;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}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/appearance/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.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/email',
+  '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:"email_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/email',
+  'title' => 'Email Contact Form Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer flood control settings for email contact forms',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->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/development/testing',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/testing',
+  'title' => 'Testing',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.',
+  'position' => '',
+  'weight' => '-5',
+  'include_file' => 'modules/simpletest/simpletest.pages.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/testing/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/development/testing',
+  'tab_root' => 'admin/config/development/testing',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/simpletest/simpletest.pages.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/testing/results/%',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"simpletest_result_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/testing/results/%',
+  'title' => 'Test result',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View result of tests.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/simpletest/simpletest.pages.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/testing/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"simpletest_settings_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/development/testing',
+  'tab_root' => 'admin/config/development/testing',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/simpletest/simpletest.pages.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' => 'user_access',
+  'access_arguments' => '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:5:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:7:"default";i:3;s:11:"user_access";i:4;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:5:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:4:"full";i:3;s:11:"user_access";i:4;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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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/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:26:"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' => 'modules/locale/locale.admin.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/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' => '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' => 'modules/locale/locale.admin.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/aggregator',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'Feed aggregator',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/add/category',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/services/aggregator',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'Add category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/add/feed',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/services/aggregator',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'Add feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/add/opml',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_opml";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/services/aggregator',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'Import OPML',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/edit/category/%',
+  'load_functions' => 'a:1:{i:6;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '126',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/aggregator/edit/category/%',
+  'title' => 'Edit category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/edit/feed/%',
+  'load_functions' => 'a:1:{i:6;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '126',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/aggregator/edit/feed/%',
+  'title' => 'Edit feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/services/aggregator',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/remove/%',
+  'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/aggregator/remove/%',
+  'title' => 'Remove items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"aggregator_admin_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/services/aggregator',
+  'tab_root' => 'admin/config/services/aggregator',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/aggregator/update/%',
+  'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'aggregator_admin_refresh_feed',
+  'page_arguments' => 'a:1:{i:0;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/aggregator/update/%',
+  'title' => 'Update items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.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/system/statistics',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer statistics";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"statistics_settings_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/statistics',
+  'title' => 'Statistics',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Control details about what and how your site logs access statistics.',
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => 'modules/statistics/statistics.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/user-interface/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'shortcut_set_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add and modify shortcut sets.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit shortcuts',
+  'title_callback' => 'shortcut_set_title_callback',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"shortcut_link_add";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'shortcut_link_add_inline',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/delete',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_delete_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"shortcut_set_delete_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/delete',
+  'title' => 'Delete shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/edit',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_edit_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit set name',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/links',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'List links',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/add-set',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"shortcut_set_add_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Add shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"shortcut_link_edit";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%',
+  'title' => 'Edit shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"shortcut_link_delete";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'title' => 'Delete shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.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/book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+  'page_callback' => 'book_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/content',
+  'tab_root' => 'admin/content',
+  'title' => 'Books',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => "Manage your site's book outlines.",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/%',
+  'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_access',
+  'access_arguments' => 'a:1:{i:0;i:3;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content/book/%',
+  'title' => 'Re-order book pages and change titles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+  'page_callback' => 'book_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/book',
+  'tab_root' => 'admin/content',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/book/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:19:"book_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/book',
+  'tab_root' => 'admin/content',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '8',
+  'include_file' => 'modules/book/book.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/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_main',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help',
+  'title' => 'Help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Reference for usage, configuration, and modules.',
+  'position' => '',
+  'weight' => '9',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/aggregator',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/aggregator',
+  'title' => 'aggregator',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/block',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/block',
+  'title' => 'block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/blog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/blog',
+  'title' => 'blog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/book',
+  'title' => 'book',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/color',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/color',
+  'title' => 'color',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/comment',
+  'title' => 'comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/contact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/contact',
+  'title' => 'contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/contextual',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/contextual',
+  'title' => 'contextual',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/date',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/date',
+  'title' => 'date',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/dblog',
+  'title' => 'dblog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field',
+  'title' => 'field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_sql_storage',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_sql_storage',
+  'title' => 'field_sql_storage',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_ui',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_ui',
+  'title' => 'field_ui',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/file',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/file',
+  'title' => 'file',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/filter',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/filter',
+  'title' => 'filter',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/forum',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/forum',
+  'title' => 'forum',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/help',
+  'title' => 'help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/image',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/image',
+  'title' => 'image',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/list',
+  'title' => 'list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/locale',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/locale',
+  'title' => 'locale',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/menu',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/menu',
+  'title' => 'menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/node',
+  'title' => 'node',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/number',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/number',
+  'title' => 'number',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/options',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/options',
+  'title' => 'options',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/path',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/path',
+  'title' => 'path',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/php',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/php',
+  'title' => 'php',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/rdf',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/rdf',
+  'title' => 'rdf',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/search',
+  'title' => 'search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/shortcut',
+  'title' => 'shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/simpletest',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/simpletest',
+  'title' => 'simpletest',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/statistics',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/statistics',
+  'title' => 'statistics',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/syslog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/syslog',
+  'title' => 'syslog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/system',
+  'title' => 'system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/taxonomy',
+  'title' => 'taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/text',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/text',
+  'title' => 'text',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/toolbar',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/toolbar',
+  'title' => 'toolbar',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/tracker',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/tracker',
+  'title' => 'tracker',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/translation',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/translation',
+  'title' => 'translation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/trigger',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/trigger',
+  'title' => 'trigger',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/update',
+  'title' => 'update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/user',
+  'title' => 'user',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.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/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Install new module',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.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/modules/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.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/access-denied',
+  '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:13:"access denied";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/access-denied',
+  'title' => "Top 'access denied' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'access denied' errors (403s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/access/%',
+  'load_functions' => 'a:1:{i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_access_log',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/access/%',
+  'title' => 'Details',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View access log.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/dblog',
+  'title' => 'Recent log messages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View events that have recently been logged.',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/event/%',
+  'load_functions' => 'a:1:{i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_event',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/event/%',
+  'title' => 'Details',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.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/hits',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_recent_hits',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/hits',
+  'title' => 'Recent hits',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View pages that have recently been visited.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/page-not-found',
+  '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:14:"page not found";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/page-not-found',
+  'title' => "Top 'page not found' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'page not found' errors (404s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/pages',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_pages',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/pages',
+  'title' => 'Top pages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View pages that have been hit frequently.',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/statistics/statistics.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/referrers',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_referrers',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/referrers',
+  'title' => 'Top referrers',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View top referrers.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/statistics/statistics.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";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/search',
+  'title' => 'Top search phrases',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View most popular search phrases.',
+  'position' => '',
+  'weight' => '0',
+  'include_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:{}',
+  '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/reports/updates',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Available updates',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Get a status report about available updates for your installed modules and themes.',
+  'position' => '',
+  'weight' => '-50',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/check',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_manual_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates/check',
+  'title' => 'Manual update check',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.fetch.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Install new module or theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/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:15:"update_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '50',
+  'include_file' => 'modules/update/update.settings.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/reports/visitors',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_top_visitors',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/visitors',
+  'title' => 'Top visitors',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View visitors that hit many pages.',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/statistics/statistics.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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:17:{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.40\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";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:1444866674;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}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:17:{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.40\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";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:1444866674;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}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/contact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}',
+  'page_callback' => 'contact_category_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/contact',
+  'title' => 'Contact form',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Create a system contact form and set up categories for the form to use.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/contact/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:26:"contact_category_edit_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/contact',
+  'tab_root' => 'admin/structure/contact',
+  'title' => 'Add category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/contact/delete/%',
+  'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"contact_category_delete_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/contact/delete/%',
+  'title' => 'Delete contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/contact/contact.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/contact/edit/%',
+  'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"contact_category_edit_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/contact/edit/%',
+  'title' => 'Edit contact category',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/contact/contact.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' => 'user_access',
+  'access_arguments' => '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:5:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:7:"default";i:3;s:11:"user_access";i:4;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:5:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:4:"full";i:3;s:11:"user_access";i:4;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' => 'user_access',
+  'access_arguments' => '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' => '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:"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' => 'user_access',
+  'access_arguments' => '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' => '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:"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' => 'user_access',
+  'access_arguments' => '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' => 'user_access',
+  'access_arguments' => '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/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/trigger',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'Triggers',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure when to execute actions.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:1:{i:0;s:7:"comment";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/trigger',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'Comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:1:{i:0;s:4:"node";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/trigger',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'Node',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:1:{i:0;s:6:"system";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/trigger',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'System',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:1:{i:0;s:8:"taxonomy";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/trigger',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'Taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/unassign',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'trigger_menu_unassign_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:16:"trigger_unassign";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/trigger/unassign',
+  'title' => 'Unassign',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => 'Unassign an action from a trigger.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/trigger/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'trigger_assign',
+  'page_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/trigger',
+  'tab_root' => 'admin/structure/trigger',
+  'title' => 'User',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/trigger/trigger.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' => 'user_access',
+  'access_arguments' => '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:5:{i:0;s:7:"comment";i:1;i:4;i:2;s:7:"default";i:3;s:11:"user_access";i:4;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:5:{i:0;s:7:"comment";i:1;i:4;i:2;s:4:"full";i:3;s:11:"user_access";i:4;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' => '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: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' => '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:"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' => '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: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' => '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:"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' => '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: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' => '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: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' => 'user_access',
+  'access_arguments' => '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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:7:"default";i:3;s:11:"user_access";i:4;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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:4:"full";i:3;s:11:"user_access";i:4;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/print',
+  '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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:5:"print";i:3;s:11:"user_access";i:4;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:5:"print";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Print',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  '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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:3:"rss";i:3;s:11:"user_access";i:4;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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:12:"search_index";i:3;s:11:"user_access";i:4;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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:13:"search_result";i:3;s:11:"user_access";i:4;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:5:{i:0;s:4:"node";i:1;i:4;i:2;s:6:"teaser";i:3;s:11:"user_access";i:4;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' => '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: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' => '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:"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' => '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: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' => '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:"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' => '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: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' => '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: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' => 'admin/update/ready',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"update_manager_update_ready_form";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/update/ready',
+  'title' => 'Ready to update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'aggregator',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_last',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator',
+  'title' => 'Feed aggregator',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_aggregator_has_categories',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'aggregator_page_categories',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/categories',
+  'title' => 'Categories',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_category',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => '',
+  'title_callback' => '_aggregator_category_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/categorize',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:29:"aggregator_page_category_form";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'Categorize',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/configure',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'aggregator/categories/%/view',
+  'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_category',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/categories/%',
+  'tab_root' => 'aggregator/categories/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/opml',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_opml',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/opml',
+  'title' => 'OPML feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/rss',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_rss',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/rss',
+  'title' => 'RSS feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_sources',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/sources',
+  'title' => 'Sources',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_source',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/categorize',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"aggregator_page_source_form";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'Categorize',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/aggregator/aggregator.pages.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/configure',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'Configure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/aggregator/aggregator.admin.inc',
+))
+->values(array(
+  'path' => 'aggregator/sources/%/view',
+  'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+  'page_callback' => 'aggregator_page_source',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'aggregator/sources/%',
+  'tab_root' => 'aggregator/sources/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/aggregator/aggregator.pages.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' => 'blog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'blog_page_last',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'blog',
+  'title' => 'Blogs',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/blog/blog.pages.inc',
+))
+->values(array(
+  'path' => 'blog/%',
+  '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' => 'blog_page_user_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'blog_page_user',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'blog/%',
+  'title' => 'My blog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/blog/blog.pages.inc',
+))
+->values(array(
+  'path' => 'blog/%/feed',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'blog_page_user_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'blog_feed_user',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'blog/%/feed',
+  'title' => 'Blogs',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/blog/blog.pages.inc',
+))
+->values(array(
+  'path' => 'blog/feed',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'blog_feed_last',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'blog/feed',
+  'title' => 'Blogs',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/blog/blog.pages.inc',
+))
+->values(array(
+  'path' => 'book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'book_render',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'book',
+  'title' => 'Books',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.pages.inc',
+))
+->values(array(
+  'path' => 'book/export/%/%',
+  'load_functions' => 'a:2:{i:2;N;i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
+  'page_callback' => 'book_export',
+  'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '12',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'book/export/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.pages.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' => 'contact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:17:"contact_site_form";}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'contact',
+  'title' => 'Contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/contact/contact.pages.inc',
+))
+->values(array(
+  'path' => 'ctools/autocomplete/%',
+  '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' => 'ctools_content_autocomplete_entity',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/autocomplete/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/content.menu.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/access/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_access_ajax_add',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/access/add',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/access/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_access_ajax_edit',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/access/configure',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/access/delete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_access_ajax_delete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/access/delete',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_context_ajax_item_add',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/add',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_context_ajax_item_edit',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/configure',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc',
+))
+->values(array(
+  'path' => 'ctools/context/ajax/delete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'ctools_context_ajax_item_delete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'ctools/context/ajax/delete',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc',
+))
+->values(array(
+  'path' => 'email/%/%/%',
+  'load_functions' => 'a:3:{i:1;N;i:2;N;i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'email_mail_page',
+  'page_arguments' => 'a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '8',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'email/%/%/%',
+  'title' => 'Email Contact Form',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'entityreference/autocomplete/single/%/%/%',
+  'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'entityreference_autocomplete_access_callback',
+  'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}',
+  'page_callback' => 'entityreference_autocomplete_callback',
+  'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '56',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'entityreference/autocomplete/single/%/%/%',
+  'title' => 'Entity Reference Autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'entityreference/autocomplete/tags/%/%/%',
+  'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'entityreference_autocomplete_access_callback',
+  'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}',
+  'page_callback' => 'entityreference_autocomplete_callback',
+  'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '56',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'entityreference/autocomplete/tags/%/%/%',
+  'title' => 'Entity Reference 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' => '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' => '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;}',
+  '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/%/outline',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'book_outline',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Outline',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/book/book.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/outline/remove',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_book_outline_remove_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '11',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/outline/remove',
+  'title' => 'Remove from outline',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/book/book.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/%/track',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_node_tracker',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Track',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/statistics/statistics.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/translate',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_translation_tab_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'translation_node_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' => 'Translate',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/translation/translation.pages.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/blog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"blog";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:4:"blog";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/blog',
+  'title' => 'Blog entry',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Use for multi-user blogs. Every user gets a personal blog.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/book',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"book";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:4:"book";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/book',
+  'title' => 'Book page',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.',
+  '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' => 'This is the description of the test content type.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node_reference/autocomplete/%/%/%',
+  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'reference_autocomplete_access',
+  'access_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+  'page_callback' => 'node_reference_autocomplete',
+  'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '24',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node_reference/autocomplete/%/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->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' => 'search/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;s:0:"";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'search',
+  'tab_root' => 'search',
+  'title' => 'Users',
+  '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' => 'search/user/%',
+  '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:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'search/node',
+  'tab_root' => 'search/node/%',
+  'title' => 'Users',
+  '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' => 'taxonomy_autocomplete',
+  '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' => 'modules/taxonomy/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' => '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' => 'taxonomy_term_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/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/%/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' => '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' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'toolbar/toggle',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access toolbar";}',
+  'page_callback' => 'toolbar_toggle_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'toolbar/toggle',
+  'title' => 'Toggle drawer visibility',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'tracker',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'tracker_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'tracker',
+  'title' => 'Recent content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/tracker/tracker.pages.inc',
+))
+->values(array(
+  'path' => 'tracker/%',
+  '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' => '_tracker_myrecent_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'tracker_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'tracker',
+  'tab_root' => 'tracker',
+  'title' => 'My recent content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/tracker/tracker.pages.inc',
+))
+->values(array(
+  'path' => 'tracker/all',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'tracker_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'tracker',
+  'tab_root' => 'tracker',
+  'title' => 'All recent content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/tracker/tracker.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/%/contact',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_contact_personal_tab_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"contact_personal_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Contact',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/contact/contact.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/%/shortcuts',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_switch_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:19:"shortcut_set_switch";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'user/%/track',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_tracker_user_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'tracker_page',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Track',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/tracker/tracker.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/track/content',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_tracker_user_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'tracker_page',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '11',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'user/%/track',
+  'tab_root' => 'user/%',
+  'title' => 'Track content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/tracker/tracker.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/track/navigation',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
+  'page_callback' => 'statistics_user_tracker',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '11',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'user/%/track',
+  'tab_root' => 'user/%',
+  'title' => 'Track page visits',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/statistics/statistics.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',
+))
+->values(array(
+  'path' => 'user_reference/autocomplete/%/%/%',
+  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'reference_autocomplete_access',
+  'access_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+  'page_callback' => 'user_reference_autocomplete',
+  'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '24',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user_reference/autocomplete/%/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->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' => '1',
+  'vid' => '1',
+  'type' => 'test_content_type',
+  'language' => 'en',
+  'title' => 'A Node',
+  'uid' => '2',
+  'status' => '1',
+  'created' => '1421727515',
+  'changed' => '1441032132',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '11',
+  'type' => 'article',
+  'language' => 'en',
+  'title' => 'The thing about Deep Space 9',
+  'uid' => '2',
+  'status' => '1',
+  'created' => '1441306772',
+  'changed' => '1564543637',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '2',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '12',
+  'type' => 'article',
+  'language' => 'is',
+  'title' => 'is - The thing about Deep Space 9',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1471428152',
+  'changed' => '1564543706',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '2',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '13',
+  'type' => 'article',
+  'language' => 'is',
+  'title' => 'is - The thing about Firefly',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1478755274',
+  'changed' => '1564543810',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '4',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '14',
+  'type' => 'article',
+  'language' => 'en',
+  'title' => 'en - The thing about Firefly',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1478755314',
+  'changed' => '1564543929',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '4',
+  'translate' => '0',
+))
+->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',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '8',
+  'type' => 'blog',
+  'language' => 'en',
+  'title' => 'The number 47',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1551000341',
+  'changed' => '1552126247',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '8',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '9',
+  'type' => 'blog',
+  'language' => 'fr',
+  'title' => 'fr - The number 47',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1552126296',
+  'changed' => '1552126296',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '8',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '10',
+  'type' => 'blog',
+  'language' => 'is',
+  'title' => 'is - The number 47',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1552126363',
+  'changed' => '1552126363',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '8',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '18',
+  'type' => 'et',
+  'language' => 'en',
+  'title' => 'Page one',
+  'uid' => '1',
+  'status' => '1',
+  'created' => '1568261523',
+  'changed' => '1568261721',
+  'comment' => '1',
+  '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' => '1',
+  'cid' => '4',
+  'last_comment_timestamp' => '1426781880',
+  'last_comment_name' => '',
+  'last_comment_uid' => '3',
+  'comment_count' => '2',
+))
+->values(array(
+  'nid' => '3',
+  'cid' => '3',
+  'last_comment_timestamp' => '1533031490',
+  'last_comment_name' => '',
+  'last_comment_uid' => '1',
+  'comment_count' => '1',
+))
+->values(array(
+  'nid' => '4',
+  'cid' => '0',
+  'last_comment_timestamp' => '1478755274',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'cid' => '0',
+  'last_comment_timestamp' => '1478755314',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->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',
+))
+->values(array(
+  'nid' => '9',
+  'cid' => '0',
+  'last_comment_timestamp' => '1552126296',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '1',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'cid' => '0',
+  'last_comment_timestamp' => '1552126363',
+  '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' => '1',
+  'totalcount' => '2',
+  'daycount' => '0',
+  'timestamp' => '1421727536',
+))
+->values(array(
+  'nid' => '2',
+  'totalcount' => '1',
+  'daycount' => '0',
+  'timestamp' => '1471428059',
+))
+->values(array(
+  'nid' => '3',
+  'totalcount' => '1',
+  'daycount' => '0',
+  'timestamp' => '1471428153',
+))
+->values(array(
+  'nid' => '4',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1478755275',
+))
+->values(array(
+  'nid' => '5',
+  'totalcount' => '1',
+  'daycount' => '1',
+  'timestamp' => '1478755314',
+))
+->values(array(
+  'nid' => '6',
+  'totalcount' => '2',
+  'daycount' => '2',
+  'timestamp' => '1504715439',
+))
+->values(array(
+  'nid' => '7',
+  'totalcount' => '2',
+  'daycount' => '2',
+  'timestamp' => '1504715438',
+))
+->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' => '1',
+  'vid' => '1',
+  'uid' => '1',
+  'title' => 'A Node',
+  'log' => '',
+  'timestamp' => '1441032132',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '2',
+  'uid' => '1',
+  'title' => 'The thing about Deep Space 9 (1st rev)',
+  'log' => 'DS9 1st rev',
+  'timestamp' => '1564543588',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '3',
+  'uid' => '1',
+  'title' => 'is - The thing about Deep Space 9 (1st rev)',
+  'log' => 'is - DS9 1st rev',
+  'timestamp' => '1564543677',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '4',
+  'uid' => '1',
+  'title' => 'is - The thing about Firefly (1st rev)',
+  'log' => 'is - Firefly 1st rev',
+  'timestamp' => '1478755274',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '5',
+  'uid' => '1',
+  'title' => 'en - The thing about Firefly (1st rev)',
+  'log' => 'Firefly 1st rev',
+  'timestamp' => '1564543887',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->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',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '8',
+  'uid' => '1',
+  'title' => 'The number 47',
+  'log' => '',
+  'timestamp' => '1552126247',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '9',
+  'uid' => '1',
+  'title' => 'fr - The number 47',
+  'log' => '',
+  'timestamp' => '1552126296',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '10',
+  'uid' => '1',
+  'title' => 'is - The number 47',
+  'log' => '',
+  'timestamp' => '1552126363',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '11',
+  'uid' => '1',
+  'title' => 'The thing about Deep Space 9',
+  'log' => 'DS9 2nd rev',
+  'timestamp' => '1564543637',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '12',
+  'uid' => '1',
+  'title' => 'is - The thing about Deep Space 9',
+  'log' => 'is - DS9 2nd rev',
+  'timestamp' => '1564543706',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '13',
+  'uid' => '1',
+  'title' => 'is - The thing about Firefly',
+  'log' => 'is - Firefly 2nd rev',
+  'timestamp' => '1564543810',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '14',
+  'uid' => '1',
+  'title' => 'en - The thing about Firefly',
+  'log' => 'Firefly 2nd rev',
+  'timestamp' => '1564543929',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '15',
+  'uid' => '1',
+  'title' => 'Page one',
+  'log' => '',
+  'timestamp' => '1568261523',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '16',
+  'uid' => '1',
+  'title' => 'Page one',
+  'log' => '',
+  'timestamp' => '1568261548',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '17',
+  'uid' => '1',
+  'title' => 'Page one',
+  'log' => '2nd',
+  'timestamp' => '1568261687',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '18',
+  'uid' => '1',
+  'title' => 'Page one',
+  'log' => '',
+  'timestamp' => '1568261721',
+  'status' => '1',
+  'comment' => '1',
+  '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' => '0',
+  'orig_type' => 'blog',
+))
+->values(array(
+  'type' => 'book',
+  'name' => 'Book page',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.',
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'book',
+))
+->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' => 'This is the description of the test content type.',
+  'help' => 'Help text for test content type',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'test_content_type',
+))
+->values(array(
+  'type' => 'et',
+  'name' => 'Entity translation test',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => 'Entity translation test',
+  'help' => 'Help text foret pages',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'et',
+))
+ ->values(array(
+  'type' => 'a_thirty_two_character_type_name',
+  'name' => 'Test long name',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => '',
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'page',
+))
+->execute();
+
+$connection->schema()->createTable('picture_mapping', array(
+  'fields' => array(
+    'label' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'machine_name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+    ),
+    'breakpoint_group' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      'length' => '255',
+    ),
+    'mapping' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'machine_name',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('picture_mapping')
+->fields(array(
+  'label',
+  'machine_name',
+  'breakpoint_group',
+  'mapping',
+))
+->values(array(
+  'label' => 'Narrow',
+  'machine_name' => 'narrow',
+  'breakpoint_group' => 'responsive_image',
+  'mapping' => 'a:2:{s:38:"breakpoints.theme.my_theme_id.computer";a:3:{s:12:"multiplier_1";a:2:{s:12:"mapping_type";s:11:"image_style";s:11:"image_style";s:20:"custom_image_style_1";}s:12:"multiplier_2";a:3:{s:12:"mapping_type";s:5:"sizes";s:5:"sizes";i:2;s:18:"sizes_image_styles";a:2:{i:0;s:20:"custom_image_style_1";i:1;s:20:"custom_image_style_2";}}s:12:"multiplier_3";a:1:{s:12:"mapping_type";s:5:"_none";}}s:41:"breakpoints.theme.my_theme_id.computertwo";a:1:{s:12:"multiplier_2";a:3:{s:12:"mapping_type";s:5:"sizes";s:5:"sizes";i:2;s:18:"sizes_image_styles";a:2:{i:0;s:20:"custom_image_style_1";i:1;s:20:"custom_image_style_2";}}}}',
+))
+->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('rdf_mapping', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+    ),
+    'mapping' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'type',
+    'bundle',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('rdf_mapping')
+->fields(array(
+  'type',
+  'bundle',
+  'mapping',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'article',
+  'mapping' => 'a:11:{s:11:"field_image";a:2:{s:10:"predicates";a:2:{i:0;s:8:"og:image";i:1;s:12:"rdfs:seeAlso";}s:4:"type";s:3:"rel";}s:10:"field_tags";a:2:{s:10:"predicates";a:1:{i:0;s:10:"dc:subject";}s:4:"type";s:3:"rel";}s:7:"rdftype";a:2:{i:0;s:9:"sioc:Item";i:1;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'blog',
+  'mapping' => 'a:9:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:14:"sioct:BlogPost";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'forum',
+  'mapping' => 'a:10:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:15:"sioct:BoardPost";}s:15:"taxonomy_forums";a:2:{s:10:"predicates";a:1:{i:0;s:18:"sioc:has_container";}s:4:"type";s:3:"rel";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}',
+))
+->values(array(
+  'type' => 'taxonomy_term',
+  'bundle' => 'forums',
+  'mapping' => 'a:5:{s:7:"rdftype";a:2:{i:0;s:14:"sioc:Container";i:1;s:10:"sioc:Forum";}s:4:"name";a:1:{s:10:"predicates";a:2:{i:0;s:10:"rdfs:label";i:1;s:14:"skos:prefLabel";}}s:11:"description";a:1:{s:10:"predicates";a:1:{i:0;s:15:"skos:definition";}}s:3:"vid";a:2:{s:10:"predicates";a:1:{i:0;s:13:"skos:inScheme";}s:4:"type";s:3:"rel";}s:6:"parent";a:2:{s:10:"predicates";a:1:{i:0;s:12:"skos:broader";}s:4:"type";s:3:"rel";}}',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'page',
+  'mapping' => 'a:9:{s:7:"rdftype";a:1:{i:0;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}',
+))
+->execute();
+$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' => 'ActionLoopTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/actions.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ActionsConfigurationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/actions.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AddFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AdminMetaTagTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AggregatorConfigurationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AggregatorCronTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AggregatorRenderingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AggregatorTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AggregatorUpdatePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/update.aggregator.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXCommandsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXElementValidation',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXFormPageCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXFormValuesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXFrameworkTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXMultiFormTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AJAXTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'module' => 'simpletest',
+  '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' => 'ArrayDiffUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AUPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.au.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BasicMinimalUpdatePath',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BasicStandardUpdatePath',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BasicUpgradePath',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchMemoryQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchPageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/batch.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchPercentagesUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/batch.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchProcessingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/batch.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BEPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.be.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockAdminThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockHashTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockHiddenRegionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockHTMLIdTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockInvalidRegionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockTemplateSuggestionsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlockViewModuleDeltaAlterWebTest',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'BlogTestCase',
+  'type' => 'class',
+  'filename' => 'modules/blog/blog.test',
+  'module' => 'blog',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/book/book.test',
+  'module' => 'book',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapAutoloadTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapDestinationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapGetFilenameTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapIPAddressTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapMiscTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapOverrideServerVariablesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapPageCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapResettableStaticTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapTimerTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BootstrapVariableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointGroupAdminTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointGroupCRUDTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointGroupTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointMultipliersTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointsAdminTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointsCRUDTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BreakpointsThemeTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/breakpoints/breakpoints.test',
+  'module' => 'breakpoints',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BRPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.br.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CacheClearCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CacheGetMultipleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CacheIsEmptyCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CacheSavingCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CAPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.ca.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CascadingStylesheetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CascadingStylesheetsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CategorizeFeedItemTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CategorizeFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CHPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.ch.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CLPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.cl.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CNPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.cn.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ColorTestCase',
+  'type' => 'class',
+  'filename' => 'modules/color/color.test',
+  'module' => 'color',
+  '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' => 'CommentUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.comment.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommonSizeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommonURLUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommonXssUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ConfirmFormTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ConnectionUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ContactPersonalTestCase',
+  'type' => 'class',
+  'filename' => 'modules/contact/contact.test',
+  'module' => 'contact',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ContactSitewideTestCase',
+  'type' => 'class',
+  'filename' => 'modules/contact/contact.test',
+  'module' => 'contact',
+  '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' => 'CRPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.cr.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CSPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.cs.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsContextIDTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/context.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsContextKeywordsSubstitutionTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/context.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsContextUnitTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/context.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CToolsCssCache',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/css-cache.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsCSSObjectCache',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/css_cache.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsCssTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/css.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsExportCrudTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/ctools_export_test/ctools_export.test',
+  'module' => 'ctools_export_test',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsMathExpressionStackTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/math_expression_stack.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsMathExpressionTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/math_expression.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsModuleTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/ctools.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsObjectCache',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/object_cache.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsPageTokens',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/page_tokens.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsPluginsGetInfoTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/ctools.plugins.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CtoolsUnitObjectCachePlugins',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/tests/object_cache_unit.test',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_context',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/context.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_context_optional',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/context.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_context_required',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/context.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_export_ui',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_math_expr',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/math-expr.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_math_expr_stack',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/math-expr.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ctools_stylizer_image_processor',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/includes/stylizer.inc',
+  'module' => 'ctools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DashboardBlocksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dashboard/dashboard.test',
+  'module' => 'dashboard',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Database',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseBasicSyntaxTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseCaseSensitivityTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseConnectionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseDeleteTruncateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseDriverNotSpecifiedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseEmptyStatementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseFetch2TestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseFetchTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseInsertDefaultsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseInsertLOBTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseInsertTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseInvalidDataTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseLog',
+  'type' => 'class',
+  'filename' => 'includes/database/log.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseLoggingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseMergeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseNextIdCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseQueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseRangeQueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseRegressionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseSelectCloneTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectComplexTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectComplexTestCase2',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectOrderedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectPagerDefaultTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectSubqueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectTableSortDefaultTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSelectTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSerializeQueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseTaggingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseTemporaryQueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  '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' => 'DatabaseTransactionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseUpdateComplexTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseUpdateLOBTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseUpdateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateAPITestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_api.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateFieldBasic',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_field.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateFieldTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_field.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateFormTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_form.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateMigrateExampleUnitTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_migrate.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' => 'DateObject',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/date_api/date_api.module',
+  'module' => 'date_api',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateRepeatFormTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat_form.test',
+  'module' => 'date_repeat',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateRepeatTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat.test',
+  'module' => 'date_repeat',
+  '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/date_timezone.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateToolsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/date_tools/tests/date_tools.test',
+  'module' => 'date_tools',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateUITestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateValidationTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_validation.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateViewsPopupTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_views_popup.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' => 'DBLogTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dblog/dblog.test',
+  'module' => 'dblog',
+  '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' => 'DisabledNodeTypeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalAddFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalAttributesUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  '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' => 'DrupalDataApiTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  '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' => 'DrupalErrorCollectionUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalErrorHandlerTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/error.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalFakeCache',
+  'type' => 'class',
+  'filename' => 'includes/cache-install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalGetQueryArrayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalGetRdfNamespacesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalGotoTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalHTMLIdentifierTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalHtmlToTextTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/mail.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalHTTPRequestTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalHTTPResponseStatusLineTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Drupali18nConfigTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/i18n/i18n.test',
+  'module' => 'i18n',
+  'weight' => '10',
+))
+->values(array(
+  'name' => 'Drupali18nTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/i18n/i18n.test',
+  'module' => 'i18n',
+  'weight' => '10',
+))
+->values(array(
+  'name' => 'DrupalJSONTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalLocalStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalMatchPathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/path.test',
+  'module' => 'simpletest',
+  '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' => 'DrupalRenderTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalSetContentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  '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' => 'DrupalSystemListingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalTagsHandlingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalTemporaryStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/drupal_web_test_case.php',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/drupal_web_test_case.php',
+  'module' => 'simpletest',
+  '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' => 'DrupalWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/drupal_web_test_case.php',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EarlyBootstrapTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/boot.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EGPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.eg.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EnableDisableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Entity',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPICommentNodeAccessTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.controller.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIControllerExportable',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.controller.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIControllerInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entity/includes/entity.controller.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIControllerRevisionableInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entity/includes/entity.controller.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIi18nItegrationTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPIRulesIntegrationTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityAPITestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityBundleableUIController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.ui.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityContentUIController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.ui.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityCrudHookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/entity_crud_hook_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDB',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDBExtendable',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultExtraFieldsController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.info.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultFeaturesController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.features.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultI18nStringController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.i18n.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultMetadataController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.info.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultRulesController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.rules.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultUIController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.ui.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDefaultViewsController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/entity.views.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityDrupalWrapper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityExtendable',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityExtraFieldsControllerInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entity/entity.info.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityFieldHandlerHelper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc',
+  'module' => 'entity',
+  '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' => 'EntityFieldQueryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/entity_query.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityListWrapper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityLoadTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/entity_crud.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMalformedException',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataArrayObject',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataIntegrationTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataNodeAccessTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataNodeCreateAccessTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataNodeRevisionAccessTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataTaxonomyAccessTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataWrapper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataWrapperException',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMetadataWrapperIterator',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityPropertiesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReferenceAdminTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.admin.test',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReferenceBehavior_TaxonomyIndex',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_TaxonomyIndex.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReferenceHandlersTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.handlers.test',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReferenceTaxonomyTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.taxonomy.test',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_BehaviorHandler',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_BehaviorHandler_Abstract',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_BehaviorHandler_Broken',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entityreference_plugin_display',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_display.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entityreference_plugin_row_fields',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_row_fields.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entityreference_plugin_style',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_style.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Broken',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic_comment',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic_file',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic_node',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic_taxonomy_term',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityReference_SelectionHandler_Generic_user',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityStructureWrapper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityTokenTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityTranslationCommentHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.comment.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationDefaultHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationHandlerFactory',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler_factory.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationHandlerInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationNodeHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.node.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationTaxonomyTermHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.taxonomy_term.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityTranslationUserHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.user.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'EntityValueWrapper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityWebTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'module' => 'entity',
+  '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' => '11',
+))
+->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' => '11',
+))
+->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' => '11',
+))
+->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' => '11',
+))
+->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' => '11',
+))
+->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' => '11',
+))
+->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' => '11',
+))
+->values(array(
+  'name' => 'entity_views_handler_area_entity',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_boolean',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_date',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_duration',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_entity',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_field',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_numeric',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_options',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_text',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_field_uri',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_relationship',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_handler_relationship_by_bundle',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'entity_views_plugin_row_entity_view',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc',
+  'module' => 'entity',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ESPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.es.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FakeRecord',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FeedIconTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FeedParserTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FeedsMapperFieldTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.feeds.test',
+  'module' => 'entityreference',
+  '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' => 'FieldUpdatePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/update.field.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldValidationException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.attach.inc',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileCopyTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileDeleteTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileDirectoryTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileDownloadTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  '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' => 'FileHookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileLoadTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileManagedFileElementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileMimeTypeTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileMoveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileNameMungingTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilePrivateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileSaveDataTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileSaveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileSaveUploadTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileScanDirectoryTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileSpaceUsedTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTaxonomyTermTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTranferTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/filetransfer.test',
+  'module' => 'simpletest',
+  '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' => 'FileUnmanagedCopyTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileUnmanagedDeleteRecursiveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileUnmanagedDeleteTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileUnmanagedMoveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileUnmanagedSaveDataTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileURLRewritingTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileUsageTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileValidateTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileValidatorTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilledMinimalUpdatePath',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilledStandardUpdatePath',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  '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' => 'FilterFormatUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.filter.test',
+  'module' => 'simpletest',
+  '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' => 'FormAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormatDateUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormCheckboxTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormElementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsArbitraryRebuildTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsElementsLabelsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsElementsTableSelectFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsElementsVerticalTabsFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsFileInclusionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsFormStoragePageCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsFormStorageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsFormWrapperTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsProgrammaticTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsRebuildTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsRedirectTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormStateValuesCleanAdvancedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormStateValuesCleanTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormsTriggeringElementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FormValidationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  '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' => 'ForumUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.forum.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FrontPageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'GraphUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/graph.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HeadLinksTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/ctools/page_manager/tests/head_links.test',
+  'module' => 'page_manager',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HookBootExitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HookRequirementsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HTMLIdTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/form.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HUPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.hu.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ILPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.il.test',
+  'module' => 'phone',
+  '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' => 'ImageFileMoveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/image.test',
+  'module' => 'simpletest',
+  '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' => 'ImageToolkitGdTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/image.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageToolkitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/image.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageToolkitUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/image.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImportOPMLTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  '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' => 'IPAddressBlockingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ITPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.it.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'JavaScriptTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'JOPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.jo.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkAttributeCrudTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.attribute.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkBaseTestClass',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkContentCrudTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.crud.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkTokenTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.token.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkUITest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.crud_browser.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkValidateSpecificURL',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkValidateTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkValidateTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkValidateTestNews',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'LinkValidateUrlLight',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'link_views_handler_argument_target',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'link_views_handler_filter_protocol',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListDynamicValuesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListDynamicValuesValidationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  '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' => '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' => 'LocaleUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.locale.test',
+  'module' => 'simpletest',
+  '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' => 'LockFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/lock.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MailSystemInterface',
+  'type' => 'interface',
+  'filename' => 'includes/mail.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MailTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/mail.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MemoryQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuBreadcrumbTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuLinksUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuNodeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuRebuildTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuRouterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTrailTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTreeDataTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTreeOutputTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MergeQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigrateEmailFieldHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/email/email.migrate.inc',
+  'module' => 'email',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigrateEntityReferenceFieldHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entityreference/entityreference.migrate.inc',
+  'module' => 'entityreference',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigrateLinkFieldHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/link/link.migrate.inc',
+  'module' => 'link',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigratePhoneFieldHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/phone.migrate.inc',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigrateTelephoneFieldHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/telephone/telephone.migrate.inc',
+  'module' => 'telephone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MigrateTranslationEntityHandler',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/entity_translation/includes/translation.migrate.inc',
+  'module' => 'entity_translation',
+  'weight' => '11',
+))
+->values(array(
+  'name' => 'MockTestConnection',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/filetransfer.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleDependencyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleImplementsAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/module.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleInstallTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/module.test',
+  'module' => 'simpletest',
+  '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' => 'ModuleUninstallTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/module.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/module.test',
+  'module' => 'simpletest',
+  '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' => '-5',
+))
+->values(array(
+  'name' => 'NLPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.nl.test',
+  'module' => 'phone',
+  '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' => 'NodeBodyUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test',
+  'module' => 'simpletest',
+  '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' => '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' => 'NoHelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NonDefaultBlockAdmin',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '-5',
+))
+->values(array(
+  'name' => 'NumberFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/number/number.test',
+  'module' => 'number',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NZPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.nz.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OpenIDFunctionalTestCase',
+  'type' => 'class',
+  'filename' => 'modules/openid/openid.test',
+  'module' => 'openid',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OpenIDInvalidIdentifierTransitionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/openid/openid.test',
+  'module' => 'openid',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OpenIDRegistrationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/openid/openid.test',
+  'module' => 'openid',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OpenIDTestCase',
+  'type' => 'class',
+  'filename' => 'modules/openid/openid.test',
+  'module' => 'openid',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OpenIDWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/openid/openid.test',
+  'module' => 'openid',
+  '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' => 'PagerFunctionalWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/pager.test',
+  'module' => 'simpletest',
+  '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' => 'ParseInfoFilesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PasswordHashingTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/password.test',
+  'module' => 'simpletest',
+  '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' => 'PathLookupTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/path.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathMonolingualTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathSaveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/path.test',
+  'module' => 'simpletest',
+  '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' => 'PhoneFrenchTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.fr.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PhoneIntTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.int.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PhonePanamanianTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.pa.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PHPAccessTestCase',
+  'type' => 'class',
+  'filename' => 'modules/php/php.test',
+  'module' => 'php',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PHPFilterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/php/php.test',
+  'module' => 'php',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PHPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.ph.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PHPTestCase',
+  'type' => 'class',
+  'filename' => 'modules/php/php.test',
+  'module' => 'php',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PKPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.pk.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PLPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.pl.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollCreateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollDeleteChoiceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollExpirationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollJSAddChoice',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollTranslateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollVoteCheckHostname',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PollVoteTestCase',
+  'type' => 'class',
+  'filename' => 'modules/poll/poll.test',
+  'module' => 'poll',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestAutocomplete',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestBrowsing',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestDate',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestFields',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestSelect',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ProfileTestWeights',
+  'type' => 'class',
+  'filename' => 'modules/profile/profile.test',
+  'module' => 'profile',
+  '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' => 'RdfCommentAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfGetRdfNamespacesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingDefinitionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingHookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfRdfaMarkupTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfTrackerAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RegistryParseFilesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/registry.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RegistryParseFileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/registry.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileDirectoryTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileSaveUploadTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileScanDirectoryTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileUnmanagedCopyTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileUnmanagedDeleteRecursiveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileUnmanagedDeleteTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileUnmanagedMoveTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoteFileUnmanagedSaveDataTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoveFeedItemTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RemoveFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RenderElementTypesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RetrieveFileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RUPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.ru.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SchemaCache',
+  'type' => 'class',
+  'filename' => 'includes/bootstrap.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SchemaTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/schema.test',
+  'module' => 'simpletest',
+  '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' => 'SEPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.se.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SessionHttpsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/session.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SessionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/session.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SGPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.sg.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutLinksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutSetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShutdownFunctionsTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestBrokenSetUp',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestBrowserTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestDiscoveryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestFolderTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestInstallationProfileModuleTestsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestMailCaptureTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestMissingDependentModuleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SimpleTestOtherInstallationProfileModuleTestsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/simpletest.test',
+  'module' => 'simpletest',
+  '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' => 'StatisticsAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StatisticsBlockVisitorsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StatisticsLoggingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StatisticsReportsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StatisticsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StatisticsTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/statistics/statistics.test',
+  'module' => 'statistics',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StreamWrapperInterface',
+  'type' => 'interface',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StreamWrapperTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/file.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SummaryLengthTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SyslogTestCase',
+  'type' => 'class',
+  'filename' => 'modules/syslog/syslog.test',
+  'module' => 'syslog',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemAdminTestCase',
+  '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' => 'TableSortTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/tablesort.test',
+  'module' => 'simpletest',
+  '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' => 'TaxonomyRSSTestCase',
+  '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' => 'TestFileTransfer',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/filetransfer.test',
+  'module' => 'simpletest',
+  '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' => 'ThemeDebugMarkupTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeFastTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeHookInitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeItemListUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeLinksTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeRegistry',
+  'type' => 'class',
+  'filename' => 'includes/theme.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeRegistryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeTableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeUpdater',
+  'type' => 'class',
+  'filename' => 'modules/system/system.updater.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TitleAdminSettingsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/title/tests/TitleAdminSettingsTestCase.test',
+  'module' => 'title',
+  'weight' => '100',
+))
+->values(array(
+  'name' => 'TitleFieldReplacementTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/title/tests/TitleFieldReplacementTestCase.test',
+  'module' => 'title',
+  'weight' => '100',
+))
+->values(array(
+  'name' => 'TitleTranslationTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/title/tests/TitleTranslationTestCase.test',
+  'module' => 'title',
+  'weight' => '100',
+))
+->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' => 'TrackerTest',
+  'type' => 'class',
+  'filename' => 'modules/tracker/tracker.test',
+  'module' => 'tracker',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TranslatableUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.translatable.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TranslationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/translation/translation.test',
+  'module' => 'translation',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerActionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerContentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerCronTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerOrphanedActionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerOtherTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerUnassignTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerUpdatePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/update.trigger.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerUserActionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerUserTokenTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TriggerWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/trigger/trigger.test',
+  'module' => 'trigger',
+  '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' => 'UAPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.ua.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UKPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.uk.test',
+  'module' => 'phone',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UnicodeUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/unicode.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateCoreTestCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateCoreUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateDependencyHookInvocationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/update.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateDependencyMissingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/update.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateDependencyOrderingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/update.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateFeedItemTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/aggregator/aggregator.test',
+  'module' => 'aggregator',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdatePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/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' => 'UpdateTestContribCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestHelper',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestUploadCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpgradePathTaxonomyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.taxonomy.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpgradePathTriggerTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.trigger.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UploadUpgradePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.upload.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UrlAlterFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/path.test',
+  'module' => 'simpletest',
+  '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' => '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' => 'UserUpdatePathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/update.user.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserUpgradePathDuplicatedPermissionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserUpgradePathNoPasswordTokenTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserUpgradePathPasswordTokenTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test',
+  'module' => 'simpletest',
+  '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' => 'ValidUrlTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/common.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'VariableRealmControllerInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmDefaultController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmDefaultStore',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmGlobalStore',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmHooks',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmStoreInterface',
+  'type' => 'interface',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableRealmUnionController',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm_union.class.inc',
+  'module' => 'variable_realm',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableStoreRealmStore',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_store/variable_store.class.inc',
+  'module' => 'variable_store',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableStoreTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable_store/variable_store.test',
+  'module' => 'variable_store',
+  'weight' => '-1000',
+))
+->values(array(
+  'name' => 'VariableTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/variable/variable.test',
+  'module' => 'variable',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsAccessTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_access.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsAjaxTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ajax.test',
+  'module' => 'views',
+  'weight' => '10',
+))
+->values(array(
+  'name' => 'ViewsAnalyzeTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_analyze.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsArgumentDefaultTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_argument_default.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsArgumentValidatorTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_argument_validator.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsBasicTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_basic.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsCacheTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_cache.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsExposedFormTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_exposed_form.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsFieldApiDataTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsFieldApiTestHelper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsGlossaryTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_glossary.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerAreaTextTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsHandlerArgumentCommentUserUidTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerArgumentNullTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerArgumentStringTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldBooleanTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldCustomTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldDateTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsHandlerFieldFieldTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldMath',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFieldUrlTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsHandlerFieldUserNameTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFileExtensionTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test',
+  'module' => 'views',
+  'weight' => '10',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterCombineTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsHandlerFilterCommentUserUidTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterCounterTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterDateTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterEqualityTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterInOperator',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterNumericTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerFilterStringTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerRelationshipNodeTermDataTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerSortDateTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerSortRandomTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerSortTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlersTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_handlers.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handlers.test',
+  'module' => 'views',
+  'weight' => '10',
+))
+->values(array(
+  'name' => 'ViewsHandlerTestFileSize',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsHandlerTestXss',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsModuleTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_module.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsNodeRevisionRelationsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPagerTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_pager.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPagerTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/date/tests/date_views_pager.test',
+  'module' => 'date',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPluginDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsPluginStyleJumpMenuTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPluginStyleMappingTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPluginStyleTestBase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPluginStyleTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsPluginStyleUnformattedTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsQueryGroupByTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_groupby.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsSqlTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_query.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_query.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsTranslatableTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_translatable.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'viewsUiGroupbyTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_groupby.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardBasicTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardDefaultViewsTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardHelper',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardItemsPerPageTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardJumpMenuTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardMenuTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardOverrideDisplaysTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardSortingTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUIWizardTaggedWithTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUpgradeTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_upgrade.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUserArgumentDefault',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUserArgumentValidate',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsUserTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/user/views_user.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ViewsViewTest',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/views/tests/views_view.test',
+  'module' => 'views',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'views_handler_title_field',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/title/views/views_handler_title_field.inc',
+  'module' => 'title',
+  'weight' => '100',
+))
+->values(array(
+  'name' => 'XMLRPCBasicTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/xmlrpc.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'XMLRPCMessagesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/xmlrpc.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'XMLRPCValidator1IncTestCase',
+  'type' => 'class',
+  'filename' => 'modules/simpletest/tests/xmlrpc.test',
+  'module' => 'simpletest',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ZAPhoneNumberTestCase',
+  'type' => 'class',
+  'filename' => 'sites/all/modules/phone/tests/phone.za.test',
+  'module' => 'phone',
+  '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' => 'a22c8f7345c1f714ea40bbaa1385fa0e3763b389c82656cf6ff3e4d051532ee4',
+))
+->values(array(
+  'filename' => 'includes/archiver.inc',
+  'hash' => 'bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9',
+))
+->values(array(
+  'filename' => 'includes/authorize.inc',
+  'hash' => '6d64d8c21aa01eb12fc29918732e4df6b871ed06e5d41373cb95c197ed661d13',
+))
+->values(array(
+  'filename' => 'includes/batch.inc',
+  'hash' => '1fe00f9a25481cd43e19fbd6bd37b7ff9dca79f8405ec3e55ffb011be12ec2c3',
+))
+->values(array(
+  'filename' => 'includes/batch.queue.inc',
+  'hash' => '554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f',
+))
+->values(array(
+  'filename' => 'includes/bootstrap.inc',
+  'hash' => '245deaa370fa492dae401e2eee215f771f9ffbba14c1ff50631a6a4b2b3c771e',
+))
+->values(array(
+  'filename' => 'includes/cache-install.inc',
+  'hash' => 'e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e',
+))
+->values(array(
+  'filename' => 'includes/cache.inc',
+  'hash' => 'ee0bf13c7e067695dffcb9ade3b79fea82a3a8db9e9a422ebfcc91c383aa4b4c',
+))
+->values(array(
+  'filename' => 'includes/common.inc',
+  'hash' => 'd64557e1027136d80e66c329133336412c8301b48c6703943494cff1309f934c',
+))
+->values(array(
+  'filename' => 'includes/database/database.inc',
+  'hash' => '27f874fb21e1a85c86e0317669e2e26c1c6611a5e913c5bbce4c7aa62734edfe',
+))
+->values(array(
+  'filename' => 'includes/database/log.inc',
+  'hash' => '9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/database.inc',
+  'hash' => 'f021edd0e2b5e315336eb6b5e481b9516c12de78dff2c468be3d7fd0d3672665',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/install.inc',
+  'hash' => '6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/query.inc',
+  'hash' => '0212a871646c223bf77aa26b945c77a8974855373967b5fb9fdc09f8a1de88a6',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/schema.inc',
+  'hash' => '6f43ac87508f868fe38ee09994fc18d69915bada0237f8ac3b717cafe8f22c6b',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/database.inc',
+  'hash' => 'd737f95947d78eb801e8ec8ca8b01e72d2e305924efce8abca0a98c1b5264cff',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/install.inc',
+  'hash' => '585b80c5bbd6f134bff60d06397f15154657a577d4da8d1b181858905f09dea5',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/query.inc',
+  'hash' => '0df57377686c921e722a10b49d5e433b131176c8059a4ace4680964206fc14b4',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/schema.inc',
+  'hash' => '1588daadfa53506aa1f5d94572162a45a46dc3ceabdd0e2f224532ded6508403',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/select.inc',
+  'hash' => 'fd4bba7887c1dc6abc8f080fc3a76c01d92ea085434e355dc1ecb50d8743c22d',
+))
+->values(array(
+  'filename' => 'includes/database/prefetch.inc',
+  'hash' => 'b5b207a66a69ecb52ee4f4459af16a7b5eabedc87254245f37cc33bebb61c0fb',
+))
+->values(array(
+  'filename' => 'includes/database/query.inc',
+  'hash' => '4016a397f10f071cac338fd0a9b004296106e42ab2b9db8c7ff0db341658e88f',
+))
+->values(array(
+  'filename' => 'includes/database/schema.inc',
+  'hash' => '9fecfd13fc1d4056a62d385840dccd052ea0e184dc47101f4bd8f57f10b68174',
+))
+->values(array(
+  'filename' => 'includes/database/select.inc',
+  'hash' => '5e9cdc383564ba86cb9dcad0046990ce15415a3000e4f617d6e0f30a205b852c',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/database.inc',
+  'hash' => '4281c6e80932560ecbeb07d1757efd133e8699a6fccf58c27a55df0f71794622',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/install.inc',
+  'hash' => '6620f354aa175a116ba3a0562c980d86cc3b8b481042fc3cc5ed6a4d1a7a6d74',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/query.inc',
+  'hash' => 'f33ab1b6350736a231a4f3f93012d3aac4431ac4e5510fb3a015a5aa6cab8303',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/schema.inc',
+  'hash' => 'cd829700205a8574f8b9d88cd1eaf909519c64754c6f84d6c62b5d21f5886f8d',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/select.inc',
+  'hash' => '8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68',
+))
+->values(array(
+  'filename' => 'includes/date.inc',
+  'hash' => '18c047be64f201e16d189f1cc47ed9dcf0a145151b1ee187e90511b24e5d2b36',
+))
+->values(array(
+  'filename' => 'includes/entity.inc',
+  'hash' => 'e4fc9ff21b165a804d7ac4f036b3b5bd1d3c73da7029bf3f761d4bdee9ae3c96',
+))
+->values(array(
+  'filename' => 'includes/errors.inc',
+  'hash' => '72cc29840b24830df98a5628286b4d82738f2abbb78e69b4980310ff12062668',
+))
+->values(array(
+  'filename' => 'includes/file.inc',
+  'hash' => '9de0398940bf2db560902736f1832d8b72b3e8b49dbbaba5f94c9331425ee04a',
+))
+->values(array(
+  'filename' => 'includes/file.mimetypes.inc',
+  'hash' => '33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'hash' => 'fdea8ae48345ec91885ac48a9bc53daf87616271472bb7c29b7e3ce219b22034',
+))
+->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' => '9b37fe7e5d04b25604bbc63abb6b6d332be14926011533b4449de52d45a86765',
+))
+->values(array(
+  'filename' => 'includes/graph.inc',
+  'hash' => '8e0e313a8bb33488f371df11fc1b58d7cf80099b886cd1003871e2c896d1b536',
+))
+->values(array(
+  'filename' => 'includes/image.inc',
+  'hash' => 'bcdc7e1599c02227502b9d0fe36eeb2b529b130a392bc709eb737647bd361826',
+))
+->values(array(
+  'filename' => 'includes/install.core.inc',
+  'hash' => '733ec6fac8e51747d1c83f266a42e4a0cb6bf31ac50f17f06e37c9e0865f4a38',
+))
+->values(array(
+  'filename' => 'includes/install.inc',
+  'hash' => '781c54771c14b067bb38d222096f981121d479222fbdea9c433405de561a2881',
+))
+->values(array(
+  'filename' => 'includes/iso.inc',
+  'hash' => '0ce4c225edcfa9f037703bc7dd09d4e268a69bcc90e55da0a3f04c502bd2f349',
+))
+->values(array(
+  'filename' => 'includes/json-encode.inc',
+  'hash' => '02a822a652d00151f79db9aa9e171c310b69b93a12f549bc2ce00533a8efa14e',
+))
+->values(array(
+  'filename' => 'includes/language.inc',
+  'hash' => '4e08f30843a7ccaeea5c041083e9f77d33d57ff002f1ab4f66168e2c683ce128',
+))
+->values(array(
+  'filename' => 'includes/locale.inc',
+  'hash' => 'f8a3ba7868698e9b43c2ceaebe2cbdcb92d6c68427e817a6e10a76b937b5a127',
+))
+->values(array(
+  'filename' => 'includes/lock.inc',
+  'hash' => 'a181c8bd4f88d292a0a73b9f1fbd727e3314f66ec3631f288e6b9a54ba2b70fa',
+))
+->values(array(
+  'filename' => 'includes/mail.inc',
+  'hash' => 'd9fb2b99025745cbb73ebcfc7ac12df100508b9273ce35c433deacf12dd6a13a',
+))
+->values(array(
+  'filename' => 'includes/menu.inc',
+  'hash' => '2ecc6f990dc2d987425c680e27a4ddeec2e8376a2be408b00a144131f41a59ea',
+))
+->values(array(
+  'filename' => 'includes/module.inc',
+  'hash' => 'a18bc92e5fc1f2a31a79eace8c6f2436bc15c8f0b332c8b7aaafa3a223746861',
+))
+->values(array(
+  'filename' => 'includes/pager.inc',
+  'hash' => '6f9494b85c07a2cc3be4e54aff2d2757485238c476a7da084d25bde1d88be6d8',
+))
+->values(array(
+  'filename' => 'includes/password.inc',
+  'hash' => 'fd9a1c94fe5a0fa7c7049a2435c7280b1d666b2074595010e3c492dd15712775',
+))
+->values(array(
+  'filename' => 'includes/path.inc',
+  'hash' => '74bf05f3c68b0218730abf3e539fcf08b271959c8f4611940d05124f34a6a66f',
+))
+->values(array(
+  'filename' => 'includes/registry.inc',
+  'hash' => 'f47b20859f0fc80bf4bb2849a1282d6c54006957b69da0e5f4691de585ca4cdf',
+))
+->values(array(
+  'filename' => 'includes/session.inc',
+  'hash' => '7548621ae4c273179a76eba41aa58b740100613bc015ad388a5c30132b61e34b',
+))
+->values(array(
+  'filename' => 'includes/stream_wrappers.inc',
+  'hash' => '4f1feb774a8dbc04ca382fa052f59e58039c7261625f3df29987d6b31f08d92d',
+))
+->values(array(
+  'filename' => 'includes/tablesort.inc',
+  'hash' => '2d88768a544829595dd6cda2a5eb008bedb730f36bba6dfe005d9ddd999d5c0f',
+))
+->values(array(
+  'filename' => 'includes/theme.inc',
+  'hash' => '507932af124871dd2639ab8eafbbd68f962ef70f44ef1c4fd1a14daf04c53b5e',
+))
+->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' => 'e18772dafe0f80eb139fcfc582fef1704ba9f730647057d4f4841d6a6e4066ca',
+))
+->values(array(
+  'filename' => 'includes/update.inc',
+  'hash' => '77403195059de797422d9d9202f18548a38558995120c7f9ffb9bd044730a3bc',
+))
+->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' => '741aa8d6fcc6c45a9409064f52351f7999b7c702d73def8da44de2567946598a',
+))
+->values(array(
+  'filename' => 'modules/aggregator/aggregator.test',
+  'hash' => '1288945ead1e0b250cb0f2d8bc5486ab1c67295b78b5f1ba0f77ade7bf1243b4',
+))
+->values(array(
+  'filename' => 'modules/block/block.test',
+  'hash' => '40d9de00589211770a85c47d38c8ad61c598ec65d9332128a882eb8750e65a16',
+))
+->values(array(
+  'filename' => 'modules/blog/blog.test',
+  'hash' => 'f7534b972951c05d34bd832d3e06176b372fff6f4999c428f789fdd7703ed2e2',
+))
+->values(array(
+  'filename' => 'modules/book/book.test',
+  'hash' => 'a75a4ec12f930d85adbf7c46d6a1a4ed1356657466874f21e9cc931b6cd41aa0',
+))
+->values(array(
+  'filename' => 'modules/color/color.test',
+  'hash' => '013806279bd47ceb2f82ca854b57f880ba21058f7a2592c422afae881a7f5d15',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.module',
+  'hash' => 'db858137ff6ce06d87cb3b8f5275bed90c33a6d9aa7d46e7a74524cc2f052309',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.test',
+  'hash' => '0443a4dbc5aef3d64405a7cabf462c8c5e0b24517d89410d261027b85292cd4b',
+))
+->values(array(
+  'filename' => 'modules/contact/contact.test',
+  'hash' => 'd49eedd71859fbb6ffa26b87226f640db56694c8f43c863c83d920cf3632f9ad',
+))
+->values(array(
+  'filename' => 'modules/contextual/contextual.test',
+  'hash' => '023dafa199bd325ecc55a17b2a3db46ac0a31e23059f701f789f3bc42427ba0b',
+))
+->values(array(
+  'filename' => 'modules/dashboard/dashboard.test',
+  'hash' => '125df00fc6deb985dc554aa7807a48e60a68dbbddbad9ec2c4718da724f0e683',
+))
+->values(array(
+  'filename' => 'modules/dblog/dblog.test',
+  'hash' => '11fbb8522b1c9dc7c85edba3aed7308a8891f26fc7292008822bea1b54722912',
+))
+->values(array(
+  'filename' => 'modules/field/field.attach.inc',
+  'hash' => '2df4687b5ec078c4893dc1fea514f67524fd5293de717b9e05caf977e5ae2327',
+))
+->values(array(
+  'filename' => 'modules/field/field.info.class.inc',
+  'hash' => 'cf18178e119d43897d3abd882ba3acc0cf59d1ad747663437c57b1ec4d0a4322',
+))
+->values(array(
+  'filename' => 'modules/field/field.module',
+  'hash' => 'e9359f8cac64b2d81ac067d7da22972116dc10b9b346752a8ef8292943a958c9',
+))
+->values(array(
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
+  'hash' => '315eedaf2022afc884c35efd3b7c400eddab6ea30bec91924bc82ab5cd3e79f2',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'hash' => '97e55bd49f6f4b0562d04aa3773b5ab9b35063aee05c8c7231780cdcf9c97714',
+))
+->values(array(
+  'filename' => 'modules/field/modules/number/number.test',
+  'hash' => '9ccf835bbf80ff31b121286f6fbcf59cc42b622a51ab56b22362b2f55c656e18',
+))
+->values(array(
+  'filename' => 'modules/field/modules/options/options.test',
+  'hash' => 'c71441020206b1587dece7296cca306a9f0fbd6e8f04dae272efc15ed3a38383',
+))
+->values(array(
+  'filename' => 'modules/field/modules/text/text.test',
+  'hash' => 'a1e5cb0fa8c0651c68d560d9bb7781463a84200f701b00b6e797a9ca792a7e42',
+))
+->values(array(
+  'filename' => 'modules/field/tests/field.test',
+  'hash' => '5eaad7a933ef8ea05b958056492ce17858cd542111f0fe81dd1a5949ad8f966e',
+))
+->values(array(
+  'filename' => 'modules/field_ui/field_ui.test',
+  'hash' => 'ded58a83a37cf111834f68fde9c34cddc7f4d36b91f31281e41ed5220c65dac4',
+))
+->values(array(
+  'filename' => 'modules/file/tests/file.test',
+  'hash' => '51d79794cbe647b2f5635ca9193b4d63bb9f99db4d9074676a80c55582b02985',
+))
+->values(array(
+  'filename' => 'modules/filter/filter.test',
+  'hash' => '268488be9d8e6a4bfa906bbb5bbf1f0df5881c04a421cbefcd7aa4f05fb63ba0',
+))
+->values(array(
+  'filename' => 'modules/forum/forum.test',
+  'hash' => 'd282b29d6312d63183e003ba036d7645a946e828c94448592f930d80fceb42d6',
+))
+->values(array(
+  'filename' => 'modules/help/help.test',
+  'hash' => 'bc934de8c71bd9874a05ccb5e8f927f4c227b3b2397d739e8504c8fd6ae5a83c',
+))
+->values(array(
+  'filename' => 'modules/image/image.test',
+  'hash' => '19459f5be2fb58058a984ef302d6f6defca20207324db25726d06a7743cc2960',
+))
+->values(array(
+  'filename' => 'modules/locale/locale.test',
+  'hash' => '61c6a80ba44ff92e6ba4a350b7c95890368e2f9e029b8f84563df2490a8e93b1',
+))
+->values(array(
+  'filename' => 'modules/menu/menu.test',
+  'hash' => '51817d6c591c28cf268145c2d39b41f66e453edf42c86472e61b7081da1d86bb',
+))
+->values(array(
+  'filename' => 'modules/node/node.module',
+  'hash' => 'b594aa316e7d74024d633fb95a6e89a2c6c14cb108a481fd0b2521ec0e3316de',
+))
+->values(array(
+  'filename' => 'modules/node/node.test',
+  'hash' => 'e2e485fde00796305fd6926c8b4e9c4e1919020a3ec00819aa5cc1d2b3ebcc5c',
+))
+->values(array(
+  'filename' => 'modules/openid/openid.test',
+  'hash' => '3decf7faf3a9396671d52c6065a31f0ef81828015e0348a0ba9358b618e737a1',
+))
+->values(array(
+  'filename' => 'modules/path/path.test',
+  'hash' => '2004183b2c7c86028bf78c519c6a7afc4397a8267874462b0c2b49b0f8c20322',
+))
+->values(array(
+  'filename' => 'modules/php/php.test',
+  'hash' => 'd234f9c1ab18a05834a3cb6dc532fb4c259aa25612551f953ba6e3bb714657b8',
+))
+->values(array(
+  'filename' => 'modules/poll/poll.test',
+  'hash' => 'cc8486dc337471d13014954e1c1e4e5ad4956e4a0cbd395adbd064f8e5849c72',
+))
+->values(array(
+  'filename' => 'modules/profile/profile.test',
+  'hash' => 'afc23aa58769a84d94c4a6cef7b0ea2c9aa0edfdf2563a34757a1fb4d3d58233',
+))
+->values(array(
+  'filename' => 'modules/rdf/rdf.test',
+  'hash' => '9849d2b717119aa6b5f1496929e7ac7c9c0a6e98486b66f3876bda0a8c165525',
+))
+->values(array(
+  'filename' => 'modules/search/search.extender.inc',
+  'hash' => '013a6a841cc48a6dc991153fb692b8d1546e56b78d9c95e97e0d7e92296d3481',
+))
+->values(array(
+  'filename' => 'modules/search/search.test',
+  'hash' => '6512521f8de3a54238c8f337ae0aa105cab2bbc9a1addb5b1ccb755842656913',
+))
+->values(array(
+  'filename' => 'modules/shortcut/shortcut.test',
+  'hash' => '0d78280d4d0a05aa772218e45911552e39611ca9c258b9dd436307914ac3f254',
+))
+->values(array(
+  'filename' => 'modules/simpletest/drupal_web_test_case.php',
+  'hash' => 'a4c07ab08d578cc9c4adfb39aaa98270cacc58885c1d61f3a71f207142f4fc0b',
+))
+->values(array(
+  'filename' => 'modules/simpletest/simpletest.test',
+  'hash' => '8112284b928297e326a2cb2a029a8ee35490732ce73ab0b54a91e9613a84e951',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/actions.test',
+  'hash' => '4e61dcbff514581321b47b8b2402cfb387d859b1a9944cb70bf9f33977dd5220',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/ajax.test',
+  'hash' => '0581306ba076da005db073036806a4d393a166221cd7171e3e3b1974b7082106',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/batch.test',
+  'hash' => '665a621f4d5f819295ca7c53158d586ed98c42d8a8e6db1e67fb332032ec07d5',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/boot.test',
+  'hash' => '1a7cf3c120a8e544cb251ba049ae598f8b25c0a9c3283e15df07a3a562641799',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/bootstrap.test',
+  'hash' => '4ccb0841905a34438e5b3acd712d0a1b52b6aa41535d3a64d3e50eff355a5dbe',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/cache.test',
+  'hash' => '2ff9a42287a6419acba6589cd887e9c0d765c1c201865799abe03ee6f3234dfb',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/common.test',
+  'hash' => 'aa2449d4ce5109bc9593901f34f74ce9caeea6450539a120afdf7a71f1e35276',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/database_test.test',
+  'hash' => '64baa1520d815e049310ae697fa79390b6b0a02fb03d47c64d3caec8d40ab8e9',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_crud.test',
+  'hash' => '0db2e08cb15ef287ed622fa56cee85e6a61b6e7a8547c77531a80a9ec1379d87',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_crud_hook_test.test',
+  'hash' => '5f3f083a018c1c0e78c8532cfc87b95d3c2b1740577a2f0eab8bc75e1db069b4',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_query.test',
+  'hash' => '8b107f796e9febb8080b153d3c9b969cea5bbb3cd4ee410c8f612bf7bdbb0a63',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/error.test',
+  'hash' => 'df8360738a4b3c946209a560ae83065728ae1aa56744cd8aaee398325a7cda60',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/file.test',
+  'hash' => '25fdee40ceb8c84f08677224db941e251906f2caa185b351de80eba76f20c90b',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/filetransfer.test',
+  'hash' => 'a5ae7e24c43f994968d059c93d56be0dfd580699e2cb884afb074b9ae5895fd9',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/form.test',
+  'hash' => '1d932031c1b2e33947c1cb480457f9f6c95b1ee93bab6eab785c2cde290fd9d7',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/graph.test',
+  'hash' => '3038b97305b54f859a78356c184feeb773056e6c54b9ad511cc4c487ea3355c2',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/image.test',
+  'hash' => 'fbad58b83e40aec654bf66835e30f81b83a76714efc560d73e7be3841ab5e996',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/lock.test',
+  'hash' => '0d63de7e57c405dae03a6c04e13392c59c8dc19a843e0818cc43212af2e26242',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/mail.test',
+  'hash' => '9f772652385048639264f64147eab2675e9e76be2258e70bbefc2f6f753d047f',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/menu.test',
+  'hash' => 'b7602b23403271fd404646cd5f4970ce278eb3c014ed30676f1ba680cfd749a1',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/module.test',
+  'hash' => '056de988f33d43c39e62f067af8f449f5192cd27bbbcf358a6e3b0d34d94167c',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/pager.test',
+  'hash' => '9586bc07f5ed2791ae69e8cacf1a257ffe85dde3be7769ce6e84435a001bc296',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/password.test',
+  'hash' => 'fadb23077d9364d0dba4fa7462d31f2ad842d840ad173f685cf6944aa679c9a7',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/path.test',
+  'hash' => '814b32c225e1a73f225b52c0e5a9579a754dd9f597cb71189fa0b62c5ce821ad',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/registry.test',
+  'hash' => 'eadaa4f04ffbe49656ee9c8d477a4855de12f5f7fd6923894ab6565b86fde28f',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/schema.test',
+  'hash' => '14a7975e040ae8d3a7c8bb82c9e26dabe78978f6371dec22ae8c81b71cf3e4bb',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/session.test',
+  'hash' => '6416694ef7c79680f99e405468401567357c38abead1e0ce9e232a15e7dcd823',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/tablesort.test',
+  'hash' => '0c0e011775ffc0e8f2d9c6f1284de28ad849ffa88df6e48677ed1c395c2267d1',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/theme.test',
+  'hash' => 'f542bdf4efc342609b8804767b793521c6641ab5cd31a7130865feeef5f2cfa1',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/unicode.test',
+  'hash' => '91f0f16bbdb987035b562f4621bea1522aa74851e7c107663ae17d11b2ac0959',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update.test',
+  'hash' => '49f64b9b84521f9f8eaebb9610f5cc3378d0665683032320a36abda12d16be43',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/update.aggregator.test',
+  'hash' => 'a2b6a574993591e93dacbd303a300b852775a3beea1343fb1f11578a8cdd26e1',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/update.field.test',
+  'hash' => 'e8a443db8d58d743cf06957ff949370dde65b0ad35837368fd89a95ea6594d52',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/update.trigger.test',
+  'hash' => '421b8986a71c8cf30c442cd9f1736ae7ce8838214a1b6e9eae30c9c5c108acd3',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/update.user.test',
+  'hash' => 'b21ec55d94d3baec7ce807c7972fb3b348deba70a53bfb78a66553c66ede63af',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.comment.test',
+  'hash' => 'a20a8b44b46a6bc1cc0f0a18e67a12933d0b101d463bcdc21212e5f35d93c379',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.filter.test',
+  'hash' => '0485b6d466476a85e7591eb4bdaf303b1b75a871038f1d5669a3f6d4cd81ecd0',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.forum.test',
+  'hash' => '6330fe5d85a81d7d5686da5a40cf18b275bef4c5819afb334f8fc0b043532bb4',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.locale.test',
+  'hash' => 'ec2d285222dd85022a16daed2b3a3e951dba97ab4de9fd46d89d2064f5db7595',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.menu.test',
+  'hash' => 'fa6e46dcb1028e6c3faad86c50d3d9296d7a4095115ffb8d39b627dbd31996d7',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test',
+  'hash' => 'f16f1ae5b5b3584e4d1d119473a962112fb28796efb5283aaa8df2db0ddec364',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.taxonomy.test',
+  'hash' => '805528f81162014479d94e70bcaf234f818a1898d057e05d08b148a9120743b9',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.test',
+  'hash' => '877364dd82e5e1ed28e1ee93c48fbec083237012f44038a8fef39d9c6cb8b4f9',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.translatable.test',
+  'hash' => '7a53241c9df9c671fb1da2789fe32c0e0425267f1647293a89adadbfa49bc4ac',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.trigger.test',
+  'hash' => '4ba820349ef89f6eaa73f429c053e09f937d36808149a00563efa5b551e8669d',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.upload.test',
+  'hash' => '8fc15f53a5ef54b48133a8525fcd384729563ba2d9bd49ab035549d07fabf3c4',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test',
+  'hash' => '9c11a51f2bd262f957e6c609ec84b26ac9d1fa00feeb0078b7a12beb450daab3',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/xmlrpc.test',
+  'hash' => '1d9b1fe51d31722473478087d50ed09b180748047205cea936db49a74ade82e7',
+))
+->values(array(
+  'filename' => 'modules/statistics/statistics.test',
+  'hash' => '3fd921d3cc26f9363bba0d6f29efb96c49c88ca51e2e2376b6554afaff8ceeb5',
+))
+->values(array(
+  'filename' => 'modules/syslog/syslog.test',
+  'hash' => 'ad873b3d499ebad748784ae88df3496f39de1b9bbfd98c3193ef1ea70c6376ae',
+))
+->values(array(
+  'filename' => 'modules/system/system.archiver.inc',
+  'hash' => 'faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1',
+))
+->values(array(
+  'filename' => 'modules/system/system.mail.inc',
+  'hash' => 'd31e1769f5defbe5f27dc68f641ab80fb8d3de92f6e895f4c654ec05fc7e5f0f',
+))
+->values(array(
+  'filename' => 'modules/system/system.queue.inc',
+  'hash' => 'a60cff401fc410cd81dc1d105ed66f79396ed7b15fdc3a5c5b80593ad5d4352a',
+))
+->values(array(
+  'filename' => 'modules/system/system.tar.inc',
+  'hash' => '8a31d91f7b3cd7eac25b3fa46e1ed9a8527c39718ba76c3f8c0bbbeaa3aa4086',
+))
+->values(array(
+  'filename' => 'modules/system/system.test',
+  'hash' => 'b53fdc9f28a49d9bdd819721a6bc4ae0e8a7b023a415e98672a99453187c1f1e',
+))
+->values(array(
+  'filename' => 'modules/system/system.updater.inc',
+  'hash' => '338cf14cb691ba16ee551b3b9e0fa4f579a2f25c964130658236726d17563b6a',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'hash' => '45d6d5652a464318f3eccf8bad6220cc5784e7ffdb0c7b732bf4d540e1effe83',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'hash' => '8525035816906e327ad48bd48bb071597f4c58368a692bcec401299a86699e6e',
+))
+->values(array(
+  'filename' => 'modules/tracker/tracker.test',
+  'hash' => 'bea7303dfe934afeb271506da43bcf24a51d7d5546181796d7f9f70b6283ed67',
+))
+->values(array(
+  'filename' => 'modules/translation/translation.test',
+  'hash' => 'c2ad71934a9a2139cdf8213df35f4c91dcc0e643fabb883c38e3ffbdd313d608',
+))
+->values(array(
+  'filename' => 'modules/trigger/trigger.test',
+  'hash' => '662f1a55e62832d7d5258965ca70ebe9d36ce8ae34e05fda2a2f9dc72418978b',
+))
+->values(array(
+  'filename' => 'modules/update/update.test',
+  'hash' => '1ea3e22bd4d47afb8b2799057cdbdfbb57ce09013d9d5f2de7e61ef9c2ebc72d',
+))
+->values(array(
+  'filename' => 'modules/user/user.module',
+  'hash' => '88bb508e0eb658281b085cd07c81808bd9634bba8a2271515c1d68079d58817d',
+))
+->values(array(
+  'filename' => 'modules/user/user.test',
+  'hash' => '178320fdb9a0c8754f1fa7272f68f536dcb94ae82ce7d0fc6a0f8a476c1f6922',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/includes/context.inc',
+  'hash' => '4cec11a71872eb916c4315c9f727a184d46758aa64bb950d86877a60b9007157',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/includes/css-cache.inc',
+  'hash' => 'db90ff67669d9fa445e91074ac67fb97cdb191a19e68d42744f0fd4158649cfa',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/includes/math-expr.inc',
+  'hash' => '601db581743dd22d67f7aaf228bd8d26298d72033fc675d02385a1fd6d31888f',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/includes/stylizer.inc',
+  'hash' => '3f91f5ed42fb6ee1b65ddef7ac22577b07a5d75ca1eb2df60041243ced5c7079',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php',
+  'hash' => '2fd87a7d80689e4d44673b31c07b762144eb8ac57324fd0b9cd9ede5f4ea34b5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/context.test',
+  'hash' => '3a8dd81dd1b99da05a28425f9a017cb611e0470ba88cf000c8b74339c8c91d91',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/css.test',
+  'hash' => '20ba7d780a8bdd8f512472a8becef11240da74b96599f6968fecea0ad7ae49c6',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/css_cache.test',
+  'hash' => '0dbc038efedb1fa06d2617b7c72b3a45d6ee5b5b791dcb1134876f174a2a7733',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/ctools.plugins.test',
+  'hash' => '6af9d9caa3afe93faf5051d3d42c0ce33a1ff6e3a18a09f281df1260d43337d6',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/ctools_export_test/ctools_export.test',
+  'hash' => '65e96eabc5c62d7ad29f63309671e2761f221a1c15bb6836d7eadfd263653abc',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/math_expression.test',
+  'hash' => 'b99d5c3096857de944dba0e88e21628c7268d8056f42903786172b7a95563dbf',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/math_expression_stack.test',
+  'hash' => '797d9e0844f9e214799d96b33d55dd041720d27b11ceb96c3790634d93a62be6',
+))
+->values(array(
+  'filename' => 'sites/all/modules/ctools/tests/object_cache.test',
+  'hash' => '18e03c7760a2fc8858d801479ec5471b8c93bd4044c80db557c5e77e7ab20d79',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date.migrate.inc',
+  'hash' => '47ffb48daf97c13ef154cf2ffff577018f02a7091b85dfb39e9c2c89e1da6a5d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date_api/date_api.module',
+  'hash' => 'af2124c5727d839871309b31fe288fe3945d6ef67eb469ddcc02839be98860dc',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date_api/date_api_sql.inc',
+  'hash' => '5a484b487c13fd6094348e2011c19e72d6c6c9ceb0b0a4143ef5542cd1c495fa',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat.test',
+  'hash' => '3702268fa89aa7ed9bcae025f0fb21bd67f90e89d53122049854de60a5316d4a',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat_form.test',
+  'hash' => '2ec4e5d57d5b9f1adf81505d40890c63dc684f2d0f00669b9c8c12518eb3bf4a',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/date_tools/tests/date_tools.test',
+  'hash' => 'bdb9b310295207ce2284b23556810296e1477b9604e98a3d0fb21aba7da04394',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date.test',
+  'hash' => '6cb38e9ed60bfdfa268051b47fcad699f1c8104accc7286abafbeddbbc9d143c',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_api.test',
+  'hash' => '280148ca742592a1e22f663fe4d810532b95d09975db0182347a0bbd6917f996',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_field.test',
+  'hash' => 'bae59aee63ed204e27909709e59eeae1a6192e5f7456de2ce2cce06c49732dc4',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_migrate.test',
+  'hash' => 'a43f448732d474c5136d89ff560b7e14c1ff5622f9c35a1998aa0570cd0c536c',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_timezone.test',
+  'hash' => '598ac52aa82f79fe90faa401c2c6dc7114295c0321800ea9a9b4058717d00409',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_validation.test',
+  'hash' => '2e4d27c29192c9d55eb27b985d7e9838702c4324d36ed6e3a85999e9f25ada99',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_views_pager.test',
+  'hash' => 'aceff66e11dd3ea418e9905b28384432f4fe7cf9746e711cf56add73e64336dd',
+))
+->values(array(
+  'filename' => 'sites/all/modules/date/tests/date_views_popup.test',
+  'hash' => '0684ad4977093fd7338eb045f85ceda195e82f50bd33fecbf0dca00e42b0385e',
+))
+->values(array(
+  'filename' => 'sites/all/modules/email/email.migrate.inc',
+  'hash' => 'bf3859ca39a3e5570e4ac862858f066668caab33841d65bdfa229c8445e12d5a',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/entity.features.inc',
+  'hash' => '47261e1f4f39ac3707a16fdea8a8147c09df1281bcb4b9e46b0c8120603137e8',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/entity.i18n.inc',
+  'hash' => '41e0e62af7e2774f62b162d597bb3244551c280296b692b29d039a2c243d7059',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/entity.info.inc',
+  'hash' => '8799080b9393c9560e64feae1276fb7d26fef4d92bb0edacc863ee3e7b67bf04',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/entity.rules.inc',
+  'hash' => '774199059d1b3ebe6d3fe7a49dbb1550df489055a3d066b5de54edda8dd7ba84',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/entity.test',
+  'hash' => 'df253128e41f152b45ef30b5674009c51cf4112450e5dad8e815f39ced280db5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/includes/entity.controller.inc',
+  'hash' => '342db185e6170b63c59a9b360a196eb322edb9a5b8c7819f66b0eae48ed13ebd',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/includes/entity.inc',
+  'hash' => '57411fa3d7b5cd2afe8b84f20c1741f48c32673a9da07bd2c35d4a11c50c640e',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/includes/entity.ui.inc',
+  'hash' => '65739b31af0e6b422919c17805799dc99143fd89cacfb56b9186e26ece2d0df2',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc',
+  'hash' => '0db08cbb6b730035e3e9a483e6e5c06a744a73f19e4ca83936446b44f0c3d158',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/entity.views.inc',
+  'hash' => 'de657f42389ed6832df787e4b618d8d7117b60d145d34ce5dcf3a5b65db29df9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc',
+  'hash' => '4ec395881109a71327ab8d7c5b5702bef30288ca66557e44e8539cc15a2135bb',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc',
+  'hash' => '7b7bb88e53861739b7279f705f0492fc83ce95f5b20d89339480f546422ebf25',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc',
+  'hash' => 'b28b8eee8761ba7a6af35d97ab7aaee28406e6c227271f9769818560626c5791',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc',
+  'hash' => 'b0f5be5b399de94934b24e84c8cf6053a043f6b00c60dcffa752daeafdd38778',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc',
+  'hash' => 'ed7bb64cb63b94a20c8cde98cfb053b5ea252804396cf61ac562faf1d850266b',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc',
+  'hash' => '4f255918a22fefebe9c7734f200751457a7ca4d3648e32a98511bb51968d7521',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc',
+  'hash' => '893121efbce2a7181e31147bade260c9cc657cbd33b0d254cb28b2650e57566d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc',
+  'hash' => 'f14e2b063930e8820af381b4f5e83c7278440e7804ab88cfde865b6c94e7c0f6',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc',
+  'hash' => '27ef31b8ee7b9999930380d6a5fdb477772329c4ddbd5c70cc34bcdc7543ce56',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc',
+  'hash' => '5fb0a85d35d29944c699ceaf6efed5eda2df757009e44caba8ff2be397568b60',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc',
+  'hash' => '79ecaa3eb17dfdd0ca077351b75a2c0adf411ebc04720e7cc0e2397674225f24',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc',
+  'hash' => 'b69bc538d1e1e0f91f8485ca54c3b6e2be025caa47619734c467377cf89041b9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc',
+  'hash' => '65300c793c4591d60ad908dc02cf3148fe4e899fa6ad218e875fd92d411374dc',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc',
+  'hash' => 'ba557790215f2658146424d933e0d17787a0b15180c5815f23428448ccf056a0',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/entityreference.migrate.inc',
+  'hash' => '617c6c49e6e0fa4d106cfb49b61a6994b5520934ac3b64a8400a9d969eab7c59',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc',
+  'hash' => 'a7959ddece2ce3490f92d916162e07aed313e28ca299ca0375bad633b42d93e3',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_TaxonomyIndex.class.php',
+  'hash' => '92fa0cf46ecdf6200659646e6666c562ea506c40efa41a8edd4758dc0c551b92',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc',
+  'hash' => '7ecf94f5dc3456e4a5c87117d19deb98c368617fb07d610505b1dfa351f14a0b',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php',
+  'hash' => 'e9a8a3c693ed24218d00c10c445cdb21daed10a26e6b55e5c9d6a8c616cfd871',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/plugins/selection/views.inc',
+  'hash' => '7bbe8900b6b71c2d41e370deaccca869884d0fe9ca81772d7d5bca5f58ec1cd8',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.admin.test',
+  'hash' => 'bcd6516be3099ae87a4c3d41add08edd17eafb4244db8442c5dc15f19ebde7ae',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.feeds.test',
+  'hash' => '320c7480b1758e4d80e91c0a6ea3d43b6b35d1adfe00b6155b61ef786510bb7c',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.handlers.test',
+  'hash' => '2fa170925ac5303c519378f1763e918cc2f111205220d90998b547a08db90d8c',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/tests/entityreference.taxonomy.test',
+  'hash' => '8e4f7d9ae621df0f587b6fcbf139adea2a35c69305ef018ced88447a41164c5f',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_display.inc',
+  'hash' => '9216a065ea4fdb2daacb1280e5c9549e3400b8553b5293534cf65a0d703ab189',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_row_fields.inc',
+  'hash' => '7f5a58c099c2df6fd1c3ae285197a4648841d44fa107bcb2064bc1edf435ea8b',
+))
+->values(array(
+  'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_style.inc',
+  'hash' => 'ad9a7ea5a37c2d9658c2b1d19ade3011c27ed5d9959423ebf7a390372507e6b0',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/link.migrate.inc',
+  'hash' => '0a17ff0daa79813174fff92e9db787e75e710fe757b6924eec193c66fe13f3df',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/link.module',
+  'hash' => '3fdf23f9f409b80df5eee57207a5045c566422cef14128306835f7b1b03a5e66',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.attribute.test',
+  'hash' => '8c21045dbcf346edf8dc70c157d02074dd87372d4f60e7f5a4ae11683cd79399',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.crud.test',
+  'hash' => 'de19e2c5e8c6cb02f25d7051bdd1db77852379ac59ce8185c25b4bf927478f22',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.crud_browser.test',
+  'hash' => '07794771164033e14a635625ad08fdbcdc4dafa154db2ec0bd9a95ca30202eb5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.test',
+  'hash' => 'fe5d8cd577fbfc07929e7216e115530a28777ace9b7135fbc853a3a78d550456',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.token.test',
+  'hash' => '930af3b64ccabd58a14c8f596ee4b908596b4bee64174bfa34d55fbab7173da4',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/tests/link.validate.test',
+  'hash' => '4fb3d9124767f43332f2e40bcca3aba98575dd1f6a286adfc8831607823986c5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc',
+  'hash' => 'd77c23c6b085382c63e7dbce3d95afc9756517edcdc4cd455892d8333520d4c9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc',
+  'hash' => 'e10a0d2de73bfa9a56fadbac023c6ac16022ced40c0444ab6ffed1b5d7ea7358',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/phone.migrate.inc',
+  'hash' => 'd7422e56ab02e4b55b2fdb9ea185a876fd6164446b0c4f66b5c0e70071d7e708',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.au.test',
+  'hash' => '0b920ca34f5255c6d49b0138b9bd58fa9e430fa11e33e93ab3cd248c2b4ad0fe',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.be.test',
+  'hash' => '311af0608d86bb10a02e393a2d9e541a409b081088f353eacee6ceb864130a98',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.br.test',
+  'hash' => '93bad68cd3e4560cc05914aeaee8bb9056591b46917d7295f9a3d4feca89e739',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.ca.test',
+  'hash' => '6f425a856adb70fb250fc8823bc010afab781839695c9ecb5f7be38bf7710348',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.ch.test',
+  'hash' => 'ab8fa50c459d6e11d773c597320859d07bfdbf5ab7715bd505cff025980b7070',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.cl.test',
+  'hash' => '2cc581962d4367c476b2010f10de7acb3bc9ab52177bb52694e28a88d54d48a1',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.cn.test',
+  'hash' => 'e36269835b0d5673684887cf33831a254e7b2110b98dc35a60102246901c244d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.cr.test',
+  'hash' => '04c3aab79d2c75104d0ce9a9a84f84443303289bafce79b43f06d90cbc4c78b0',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.cs.test',
+  'hash' => '3e90d66bedebd4c66b46526fb4877340b6b0c2d4bcd7557e477b5b9c52727d9a',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.eg.test',
+  'hash' => 'f0568e235c65fc625cc2eca359c0062771df5755460cb6003ae8c5197aca67f9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.es.test',
+  'hash' => '8a8bfa8827e42a79d89720cec22c9246ff463cc8bae89f78394b61fbd676614e',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.fr.test',
+  'hash' => '76dc4de9eb4547e3a27298a93fb9949f5d354b3464ec268df9da496783093115',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.hu.test',
+  'hash' => '57aee8805078b0281c4722e80d721fbcc6dec739b7258bc9843139fd2652471f',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.il.test',
+  'hash' => '5dba7aa580c087df4d0d9e8a9d8a00a0203a3217cce2e14a26fc18371964f5d5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.int.test',
+  'hash' => '99b33e5ec1d232106ce3be0adf8fb7a9e57ee2bb82536408ec60978561ac0a5f',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.it.test',
+  'hash' => 'dc80b84ed335e2989a36b3ffc7d670ff4106daa665e26df550c0dcf96915c056',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.jo.test',
+  'hash' => '0c30dc4baccba8ddb4f2c55cfc2b79ceb736769bdc664e6189d1b5e7cd348e00',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.nl.test',
+  'hash' => '33431240ce625582f22a5ae98066efd7ac57176a1d3e18a2a0f702ea43418637',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.nz.test',
+  'hash' => '3a4cbb625f3c8de015b99ed1bc712f4cd41a3819ac9aea75170ad202297e46bc',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.pa.test',
+  'hash' => 'd8fb12e636cd5028ab15e35f61d01d2d15e9e22f40724bf57f5958d6261720b7',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.ph.test',
+  'hash' => '56727122712ea07bdded9df15449ffe1e605c5e64cebf599876a49e3b0bbb616',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.pk.test',
+  'hash' => 'd061a6aa870b6a2607cfdb074d5d9ed5719e02fa298f69d38349b742335d8bb8',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.pl.test',
+  'hash' => 'b9a2079d3d93909513d1c7b10054fddcea114529ac3f0d0cbbc674c547476180',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.ru.test',
+  'hash' => 'f2f8c62e441ca34552754337f63ac7db81dceff3ebb984bfad3ad0ad19ca2072',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.se.test',
+  'hash' => '7cb5c273d1f5d19533130da5417a4208c31f7ef8fd4d336972af202e64f05fd9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.sg.test',
+  'hash' => 'f76557ba04ad21f81b010f1cd6e649b7fa9eaf1df6acbcd7ac1c7fa60945f29e',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.ua.test',
+  'hash' => '7441058b561f294da5dca24a367c5cb37bd043c4cb4a55606240d1843a244e56',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.uk.test',
+  'hash' => 'a42cde9cb4ffbdab1974f56bbdf1f6fe9987f1a5d5713d11c0d3cdc6e0cb34c3',
+))
+->values(array(
+  'filename' => 'sites/all/modules/phone/tests/phone.za.test',
+  'hash' => 'c5491ab663972aa23ae2f917a0fc605a6136f02e1b207d3fc650ed1f251359ee',
+))
+->values(array(
+  'filename' => 'sites/all/modules/telephone/telephone.migrate.inc',
+  'hash' => '14561d51028bcf5b9e2f18654c3ba76eda444feb12ea6ac4e88fdbf4c1a35650',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test',
+  'hash' => 'b8b417ef0e05806a88bd7d5e2f7dcb41339fbf5b66f39311defc9fb65476d561',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test',
+  'hash' => '347c6ffd4383706dbde844235aaf31cff44a22e95d2e6d8ef4da34a41b70edd1',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test',
+  'hash' => '53e6d57c2d1d6cd0cd92e15ca4077ba532214daf41e9c7c0f940c7c8dbd86a66',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test',
+  'hash' => 'af74a74a3357567b844606add76d7ca1271317778dd7bd245a216cf963c738b4',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test',
+  'hash' => '1d174e1f467b905d67217bd755100d78ffeca4aa4ada5c4be40270cd6d30b721',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test',
+  'hash' => '3d0213af0041146abb61dcdc750869ed773d0ac80cfa74ffbadfdd03b1f11c52',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test',
+  'hash' => 'af552bf825ab77486b3d0d156779b7c4806ce5a983c6116ad68b633daf9bb927',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test',
+  'hash' => 'd334b12a850f36b41fe89ab30a9d758fd3ce434286bd136404344b7b288460ae',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test',
+  'hash' => '75b31942adf06b107f5ffd3c97545fde8cd1040b1d00f682e3c7c1320026e26c',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test',
+  'hash' => '1446bc3d5a6b1180a79edfa46a5268dbf7f089836aa3bc45df00ddaff9dd0ce1',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test',
+  'hash' => '6f45326d7f74127956d9d8e4d7ad96a4beb0f66175fa40daf1d618d1a5fa996d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test',
+  'hash' => '49184db68af398a54e81c8a76261acd861da8fd7846b9d51dcf476d61396bfb9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test',
+  'hash' => '6e39e4f782e6b36151ceafb41a5509f7c661be79b393b24f6f5496d724535887',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test',
+  'hash' => 'b41f762a71594b438a2e60a79c8260ba54e6305635725b0747e29f0d3ffe08c9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test',
+  'hash' => 'f129ee16c03f84673e33990cbb2da5aa88c362f46e9ba1620b2a842ffd1c9cd2',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test',
+  'hash' => '05842d83a11822afe7d566835f5db9f0f94fdb27ddfc388d38138767bdf36f8b',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test',
+  'hash' => '045cc449b68bbd5526071bf38c505b6d44f6c91868273c3120705c3bad250aee',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test',
+  'hash' => 'c88f21c9cbf1aae83393b26616908f8020c18fe378d76256c7ba192df2ec17af',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test',
+  'hash' => '89420a4071677232e0eb82b184b37b818a82bdb2ff90a8b21293f9ecb21808bf',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test',
+  'hash' => '35ac7a34e696b979e86ef7209b6697098d9abe218e30a02cc4fe39fb11f2a852',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test',
+  'hash' => 'b7d090780748faad478e619fd55673d746d4a0cf343d9e40ea96881324c34cbd',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test',
+  'hash' => 'f4ff79e6bc54e83c4eb2777811f33702b7e9fe7416ef70ae00d100fa54d44fec',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test',
+  'hash' => 'f548584d7c6a71cabd3ce07e04053a38df3f3e1685210ce8114238fd05344c10',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test',
+  'hash' => '4fdba9bf05a26720ffa97e7a37da65ddc9044bd2832f8c89007b82feb062f182',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test',
+  'hash' => '9467497a6d693615b48c8f57611a850002317bcb091b926d2efbbe56a4e61480',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test',
+  'hash' => '4a6b136543a60999604c54125fa9d4f5aa61a5dcc71e2133d89325d81bc0fc2d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test',
+  'hash' => 'fb6c3279645fbcc1126acb3e1c908189e5240c647f81dcfd9b0761570c99d269',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test',
+  'hash' => '54fb7816d18416d8b0db67e9f55aa2aa50ac204eb9311be14b6700b7d7a95ae7',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test',
+  'hash' => 'b88baa8aebe183943a6e4cf2df314fef13ac41b5844cd5fa4aa91557dd624895',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test',
+  'hash' => 'a4e68bc8cfbeff4a1d9b8085fd115bfe7a8c4b84c049573fa0409b0dc8c2f053',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test',
+  'hash' => '033ca29d41af47cd7bd12d50fea6c956dde247202ebda9df7f637111481bb51d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test',
+  'hash' => '6074f5c7ae63225ea0cd26626ace6c017740e226f4d3c234e39869c31308223d',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test',
+  'hash' => '69641b6da26d8daee9a2ceb2d0df56668bf09b86db1d4071c275b6e8d0885f9e',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/user/views_user.test',
+  'hash' => 'fbb63b42a0b7051bd4d33cf36841f39d7cc13a63b0554eca431b2a08c19facae',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test',
+  'hash' => '6423f2db7673763991b1fd0c452a7d84413c7dd888ca6c95545fadc531cfaaf4',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test',
+  'hash' => 'c88c9e5d162958f8924849758486a0d83822ada06088f5cf71bfbe76932d8d84',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_access.test',
+  'hash' => 'f8b9d04b43c09a67ec722290a30408c1df8c163cf6e5863b41468bb4e381ee6f',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_analyze.test',
+  'hash' => '5548e36c99bb626209d63e5cddbc31f49ad83865c983d2662c6826b328d24ffb',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_argument_default.test',
+  'hash' => '5950937aae4608bba5b86f366ef3a56cc6518bbccfeaeacda79fa13246d220e4',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_argument_validator.test',
+  'hash' => '31f8f49946c8aa3b03d6d9a2281bdfb11c54071b28e83fb3e827ca6ff5e38c88',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_basic.test',
+  'hash' => '655bd33983f84bbea68a3f24bfab545d2c02f36a478566edf35a98a58ff0c6cf',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_cache.test',
+  'hash' => '76316e1f026c2ab81ef91450b9d6d5985cbfab087f839ea0edd112209bf84fd9',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_exposed_form.test',
+  'hash' => '2b2b16373af8ecade91d7c77bd8c2da8286a33bde554874f5d81399d201c3228',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_glossary.test',
+  'hash' => '118d50177a68a6f88e3727e10f8bcc6f95176282cc42fbd604458eeb932a36e8',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_groupby.test',
+  'hash' => 'ac6ca55f084f4884c06437815ccfa5c4d10bfef808c3f6f17a4f69537794a992',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_handlers.test',
+  'hash' => 'a696e3d6b1748da03a04ac532f403700d07c920b9c405c628a6c94ea6764f501',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_module.test',
+  'hash' => '3939798f2f679308903d4845f5625dd60df6110aec2615e33ab81e854d0b7e73',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_pager.test',
+  'hash' => '6f448c8c13c5177afb35103119d6281958a2d6dbdfb96ae5f4ee77cb3b44adc5',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_query.test',
+  'hash' => '1ab587994dc43b1315e9a534d005798aecaa14182ba23a2b445e56516b9528cb',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_translatable.test',
+  'hash' => '6899c7b09ab72c262480cf78d200ecddfb683e8f2495438a55b35ae0e103a1b3',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_ui.test',
+  'hash' => 'f9687a363d7cc2828739583e3eedeb68c99acd505ff4e3036c806a42b93a2688',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_upgrade.test',
+  'hash' => 'c48bd74b85809dd78d963e525e38f3b6dd7e12aa249f73bd6a20247a40d6713a',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_view.test',
+  'hash' => 'a52e010d27cc2eb29804a3acd30f574adf11fad1f5860e431178b61cddbdbb69',
+))
+->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' => '3',
+  'permission' => 'access administration pages',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access all views',
+  'module' => 'views',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->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 dashboard',
+  'module' => 'dashboard',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access news feeds',
+  'module' => 'aggregator',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access overlay',
+  'module' => 'overlay',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access printer-friendly version',
+  'module' => 'book',
+))
+->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 site-wide contact form',
+  'module' => 'contact',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access statistics',
+  'module' => 'statistics',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access toolbar',
+  'module' => 'toolbar',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access user contact forms',
+  'module' => 'contact',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access user profiles',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'add content to books',
+  'module' => 'book',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer actions',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer blocks',
+  'module' => 'block',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer book outlines',
+  'module' => 'book',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer contact forms',
+  'module' => 'contact',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer content types',
+  'module' => 'node',
+))
+->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 news feeds',
+  'module' => 'aggregator',
+))
+->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 shortcuts',
+  'module' => 'shortcut',
+))
+->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 statistics',
+  'module' => 'statistics',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer taxonomy',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer themes',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer unit tests',
+  'module' => 'simpletest',
+))
+->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 new books',
+  'module' => 'book',
+))
+->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' => 'customize shortcut links',
+  'module' => 'shortcut',
+))
+->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' => '2',
+  'permission' => 'post comments',
+  'module' => 'comment',
+))
+->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' => '2',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'switch shortcut sets',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'translate admin strings',
+  'module' => 'i18n_string',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'translate blocks',
+  'module' => 'i18n_block',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'translate content',
+  'module' => 'translation',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'translate interface',
+  'module' => 'locale',
+))
+->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 PHP for settings',
+  'module' => 'php',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'use text format custom_text_format',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use text format custom_text_format',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'use text format filtered_html',
+  '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 post access counter',
+  'module' => 'statistics',
+))
+->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' => '1',
+  'type' => 'node',
+  'data' => ' a node 1 default examplecom another examplecom 99999999 monday january 19 2015 2215 monday january 19 2015 2215 prefix value120suffix value abc5xyz click here some more text 9 a comment permalink submitted by admin on mon 1192015 2218 this is a comment log in or register to post comments  ',
+  'reindex' => '0',
+))
+->values(array(
+  'sid' => '2',
+  'type' => 'node',
+  'data' => ' the thing about deep space 9  is that it s the absolute best show ever trust me i would know benjamin sisko odo quark ',
+  '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' => '1',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => '1192015',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => '19',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => '2015',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => '2215',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => '2218',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => '9',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => '99999999',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'abc5xyz',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'admin',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'another',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'click',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'comment',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '27',
+))
+->values(array(
+  'word' => 'comments',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'default',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'examplecom',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '22',
+))
+->values(array(
+  'word' => 'here',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'january',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => 'monday',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => 'more',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'node',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'permalink',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'post',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'prefix',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'register',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '2',
+))
+->values(array(
+  'word' => 'some',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'submitted',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'text',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'this',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'value',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'value120suffix',
+  'sid' => '1',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => '9',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'about',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'absolute',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'benjamin',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'best',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'deep',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'ever',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'know',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'quark',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'show',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'sisko',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '11',
+))
+->values(array(
+  'word' => 'space',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'that',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'thing',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '26',
+))
+->values(array(
+  'word' => 'trust',
+  'sid' => '2',
+  'type' => 'node',
+  'score' => '1',
+))
+->values(array(
+  'word' => 'would',
+  'sid' => '2',
+  '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' => '1',
+  'count' => '0',
+))
+->values(array(
+  'word' => '1192015',
+  'count' => '0',
+))
+->values(array(
+  'word' => '19',
+  'count' => '0',
+))
+->values(array(
+  'word' => '2015',
+  'count' => '0',
+))
+->values(array(
+  'word' => '2215',
+  'count' => '0',
+))
+->values(array(
+  'word' => '2218',
+  'count' => '0',
+))
+->values(array(
+  'word' => '9',
+  'count' => '0',
+))
+->values(array(
+  'word' => '99999999',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'abc5xyz',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'about',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'absolute',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'admin',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'another',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'benjamin',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'best',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'click',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'comment',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'comments',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'deep',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'default',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'ever',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'examplecom',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'here',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'january',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'know',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'monday',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'more',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'node',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'permalink',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'post',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'prefix',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'quark',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'register',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'show',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'sisko',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'some',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'space',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'submitted',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'text',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'that',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'thing',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'this',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'trust',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'value',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'value120suffix',
+  'count' => '0',
+))
+->values(array(
+  'word' => 'would',
+  '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' => '2',
+))
+->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('shortcut_set', array(
+  'fields' => array(
+    'set_name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'set_name',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('shortcut_set')
+->fields(array(
+  'set_name',
+  'title',
+))
+->values(array(
+  'set_name' => 'shortcut-set-1',
+  'title' => 'Default',
+))
+->values(array(
+  'set_name' => 'shortcut-set-2',
+  'title' => 'Alternative shortcut set',
+))
+->execute();
+$connection->schema()->createTable('shortcut_set_users', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'set_name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('shortcut_set_users')
+->fields(array(
+  'uid',
+  'set_name',
+))
+->values(array(
+  'uid' => '2',
+  'set_name' => 'shortcut-set-2',
+))
+->execute();
+$connection->schema()->createTable('simpletest', array(
+  'fields' => array(
+    'message_id' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'test_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'test_class' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'status' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '9',
+      'default' => '',
+    ),
+    'message' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'message_group' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'function' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'line' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'file' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'message_id',
+  ),
+  '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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7004',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"blog.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"color.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7003',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:15:"contextual.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '0',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"dblog.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '7003',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/field/modules/list/tests/list_test.module',
+  'name' => 'list_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/field/modules/options/options.module',
+  'name' => 'options',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:12:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/file/tests/file_module_test.module',
+  'name' => 'file_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"help.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:15:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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_test.module',
+  'name' => 'image_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '7015',
+  'weight' => '0',
+  'info' => 'a:15:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '7000',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"openid";}s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:8:"php.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:8:"rdf.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/search.module',
+  'name' => 'search',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:50:{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:17:"tests/schema.test";i:28;s:18:"tests/session.test";i:29;s:20:"tests/tablesort.test";i:30;s:16:"tests/theme.test";i:31;s:18:"tests/unicode.test";i:32;s:17:"tests/update.test";i:33;s:17:"tests/xmlrpc.test";i:34;s:26:"tests/upgrade/upgrade.test";i:35;s:34:"tests/upgrade/upgrade.comment.test";i:36;s:33:"tests/upgrade/upgrade.filter.test";i:37;s:32:"tests/upgrade/upgrade.forum.test";i:38;s:33:"tests/upgrade/upgrade.locale.test";i:39;s:31:"tests/upgrade/upgrade.menu.test";i:40;s:31:"tests/upgrade/upgrade.node.test";i:41;s:35:"tests/upgrade/upgrade.taxonomy.test";i:42;s:34:"tests/upgrade/upgrade.trigger.test";i:43;s:39:"tests/upgrade/upgrade.translatable.test";i:44;s:33:"tests/upgrade/upgrade.upload.test";i:45;s:31:"tests/upgrade/upgrade.user.test";i:46;s:36:"tests/upgrade/update.aggregator.test";i:47;s:33:"tests/upgrade/update.trigger.test";i:48;s:31:"tests/upgrade/update.field.test";i:49;s:30:"tests/upgrade/update.user.test";}s:9:"configure";s:41:"admin/config/development/testing/settings";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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_4_test/psr_4_test.module',
+  'name' => 'psr_4_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/requirements1_test.module',
+  'name' => 'requirements1_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:13:{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.40\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:5:\"mtime\";i:1444866674;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:13:{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.40\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:5:\"mtime\";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:19:"_missing_dependency";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"5.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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:4:"7.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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_project_namespace_test.module',
+  'name' => 'system_project_namespace_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:13:"drupal:filter";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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_test.module',
+  'name' => 'taxonomy_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:8:"taxonomy";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'schema_version' => '7080',
+  'weight' => '0',
+  'info' => 'a:14:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:15:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:12:"tracker.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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.40";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:12:{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.40";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:16:"translation.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/trigger/trigger.module',
+  'name' => 'trigger',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/tests/bbb_update_test.module',
+  'name' => 'bbb_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/tests/ccc_update_test.module',
+  'name' => 'ccc_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:7:"version";s:4:"7.40";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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/tests/update_test.module',
+  'name' => 'update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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_form_test.module',
+  'name' => 'user_form_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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.40";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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' => '7018',
+  'weight' => '0',
+  'info' => 'a:15:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";s:5:"mtime";i:1444866674;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.40";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:1535762879;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:1544938132;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:1544938132;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/multiupload_filefield_widget/multiupload_filefield_widget.module',
+  'name' => 'multiupload_filefield_widget',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:8:"7.x-1.13";s:7:"project";s:28:"multiupload_filefield_widget";s:9:"datestamp";s:10:"1388873905";s:5:"mtime";i:1388873905;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-1.3";s:7:"project";s:29:"multiupload_imagefield_widget";s:9:"datestamp";s:10:"1388874206";s:5:"mtime";i:1388874206;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:12:{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:7:"7.x-1.9";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '6008',
+  'weight' => '0',
+  'info' => 'a:12:{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:5:"files";a:3:{i:0;s:20:"includes/context.inc";i:1;s:22:"includes/math-expr.inc";i:2;s:21:"includes/stylizer.inc";}s:7:"version";s:7:"7.x-1.4";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1392220730";s:5:"mtime";i:1392220730;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:12:{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:7:"7.x-1.9";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:4:"core";s:3:"7.x";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";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:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";s:12:"dependencies";a:2:{i:0;s:6:"ctools";i:1;s:5:"color";}s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:13:{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:7:"7.x-1.9";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:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:13:{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:7:"7.x-1.9";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:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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:12:{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:7:"7.x-1.9";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:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1440020680";s:5:"mtime";i:1440020680;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' => '7004',
+  'weight' => '0',
+  'info' => 'a:14:{s:4:"name";s:4:"Date";s:11:"description";s:33:"Makes date/time fields available.";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:3:"php";s:3:"5.2";s:5:"files";a:9:{i:0;s:16:"date.migrate.inc";i:1;s:19:"tests/date_api.test";i:2;s:15:"tests/date.test";i:3;s:21:"tests/date_field.test";i:4;s:23:"tests/date_migrate.test";i:5;s:26:"tests/date_validation.test";i:6;s:24:"tests/date_timezone.test";i:7;s:27:"tests/date_views_pager.test";i:8;s:27:"tests/date_views_popup.test";}s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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:12:{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:12:\"dependencies\";a:2:{i:0;s:8:\"date_api\";i:1;s:4:\"date\";}s:7:\"package\";s:9:\"Date/Time\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.9\";s:7:\"project\";s:4:\"date\";s:9:\"datestamp\";s:10:\"1441727353\";s:5:\"mtime\";i:1441727353;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:13:{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:3:"php";s:3:"5.2";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:8:"date.css";s:40:"sites/all/modules/date/date_api/date.css";}}s:5:"files";a:2:{i:0;s:15:"date_api.module";i:1;s:16:"date_api_sql.inc";}s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;s:12:"dependencies";a:0:{}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:12:{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:4:"date";i:1;s:7:"context";}s:5:"files";a:2:{i:0;s:19:"date_context.module";i:1;s:39:"plugins/date_context_date_condition.inc";}s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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:13:{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:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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' => 'sites/all/modules/date/date_migrate/date_migrate_example/date_migrate_example.module',
+  'name' => 'date_migrate_example',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{s:4:"core";s:3:"7.x";s:12:"dependencies";a:5:{i:0;s:4:"date";i:1;s:11:"date_repeat";i:2;s:17:"date_repeat_field";i:3;s:8:"features";i:4;s:7:"migrate";}s:11:"description";s:42:"Examples of migrating with the Date module";s:8:"features";a:2:{s:5:"field";a:8:{i:0;s:30:"node-date_migrate_example-body";i:1;s:36:"node-date_migrate_example-field_date";i:2;s:42:"node-date_migrate_example-field_date_range";i:3;s:43:"node-date_migrate_example-field_date_repeat";i:4;s:41:"node-date_migrate_example-field_datestamp";i:5;s:47:"node-date_migrate_example-field_datestamp_range";i:6;s:40:"node-date_migrate_example-field_datetime";i:7;s:46:"node-date_migrate_example-field_datetime_range";}s:4:"node";a:1:{i:0;s:20:"date_migrate_example";}}s:5:"files";a:1:{i:0;s:32:"date_migrate_example.migrate.inc";}s:4:"name";s:22:"Date Migration Example";s:7:"package";s:8:"Features";s:7:"project";s:4:"date";s:7:"version";s:7:"7.x-2.9";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;s:3:"php";s:5:"5.2.4";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:14:{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:12:"dependencies";a:1:{i:0;s:8:"date_api";}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:25:"themes/datepicker.1.7.css";s:59:"sites/all/modules/date/date_popup/themes/datepicker.1.7.css";}}s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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_repeat/date_repeat.module',
+  'name' => 'date_repeat',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:3:"php";s:3:"5.2";s:5:"files";a:2:{i:0;s:22:"tests/date_repeat.test";i:1;s:27:"tests/date_repeat_form.test";}s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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:13:{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:12:"dependencies";a:3:{i:0;s:8:"date_api";i:1;s:4:"date";i:2;s:11:"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:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:7:"version";s:7:"7.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1441727353";s:5:"mtime";i:1441727353;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:13:{s:4:"name";s:10:"Date Tools";s:11:"description";s:52:"Tools to import and auto-create dates and calendars.";s:12:"dependencies";a:1:{i:0;s:4:"date";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:9:"configure";s:23:"admin/config/date/tools";s:5:"files";a:1:{i:0;s:21:"tests/date_tools.test";}s:7:"version";s:8:"7.x-2.10";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1491562090";s:5:"mtime";i:1535762879;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:12:{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:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:5:"views";}s:4:"core";s:3:"7.x";s:3:"php";s:3:"5.2";s:5:"files";a:6:{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:29:"includes/date_views.views.inc";i:5;s:36:"includes/date_views_plugin_pager.inc";}s:7:"version";s:8:"7.x-2.10";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1491562090";s:5:"mtime";i:1535762879;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:13:{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:7:"version";s:8:"7.x-2.10";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:4:"date";}s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1491562090";s:5:"mtime";i:1535762879;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:14:{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:7:"version";s:7:"7.x-1.3";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1397134155";s:5:"mtime";i:1397134155;s:12:"dependencies";a:0:{}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/entity/entity.module',
+  'name' => 'entity',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7003',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-1.6";s:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1424876582";s:5:"mtime";i:1424876582;s:12:"dependencies";a:0:{}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/entity_token.module',
+  'name' => 'entity_token',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-1.6";s:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1424876582";s:5:"mtime";i:1424876582;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_feature.module',
+  'name' => 'entity_feature',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{s:4:"name";s:21:"Entity feature module";s:11:"description";s:31:"Provides some entities in code.";s:7:"version";s:7:"7.x-1.6";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:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1424876582";s:5:"mtime";i:1424876582;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:13:{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:7:"7.x-1.6";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:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1424876582";s:5:"mtime";i:1424876582;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:13:{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:7:"version";s:7:"7.x-1.6";s:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1424876582";s:5:"mtime";i:1424876582;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:14:{s:4:"name";s:16:"Entity Reference";s:11:"description";s:51:"Provides a field that can reference other entities.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:12:"dependencies";a:2:{i:0;s:6:"entity";i:1;s:6:"ctools";}s:5:"files";a:11:{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";}s:7:"version";s:7:"7.x-1.1";s:7:"project";s:15:"entityreference";s:9:"datestamp";s:10:"1384973110";s:5:"mtime";i:1384973110;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/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:12:{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:7:"version";s:7:"7.x-1.1";s:7:"project";s:15:"entityreference";s:9:"datestamp";s:10:"1384973110";s:5:"mtime";i:1384973110;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:13:{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:7:"version";s:7:"7.x-1.1";s:7:"project";s:15:"entityreference";s:9:"datestamp";s:10:"1384973110";s:5:"mtime";i:1384973110;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:14:{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:5:"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:7:"version";s:7:"7.x-1.0";s:7:"project";s:18:"entity_translation";s:9:"datestamp";s:10:"1522600694";s:5:"mtime";i:1535762879;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:12:{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:7:"version";s:7:"7.x-1.0";s:7:"project";s:18:"entity_translation";s:9:"datestamp";s:10:"1522600694";s:5:"mtime";i:1535762879;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:12:{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:7:"version";s:7:"7.x-1.0";s:7:"project";s:18:"entity_translation";s:9:"datestamp";s:10:"1522600694";s:5:"mtime";i:1535762879;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:13:{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:7:"version";s:7:"7.x-1.0";s:7:"project";s:18:"entity_translation";s:9:"datestamp";s:10:"1522600694";s:5:"mtime";i:1535762879;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:13:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '100',
+  'info' => 'a:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747250;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:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747250;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747250;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:12:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '5',
+  '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:1569454741;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:13:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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:12:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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:12:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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:13:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747251;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' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747251;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747251;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:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747251;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' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:8:"7.x-1.25";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1531342125";s:5:"mtime";i:1537747251;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:12:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7004',
+  'weight' => '-900',
+  'info' => 'a:13:{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:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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:13:{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:"7.x";s:6:"hidden";b:1;s:7:"version";s:8:"7.x-1.26";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1534531985";s:5:"mtime";i:1534531985;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:14:{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:5:"files";a:10:{i:0;s:11:"link.module";i:1;s:16:"link.migrate.inc";i:2;s:15:"tests/link.test";i:3;s:25:"tests/link.attribute.test";i:4;s:20:"tests/link.crud.test";i:5;s:28:"tests/link.crud_browser.test";i:6;s:21:"tests/link.token.test";i:7;s:24:"tests/link.validate.test";i:8;s:44:"views/link_views_handler_argument_target.inc";i:9;s:44:"views/link_views_handler_filter_protocol.inc";}s:7:"version";s:7:"7.x-1.3";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1413924830";s:5:"mtime";i:1413924830;s:12:"dependencies";a:0:{}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/phone/phone.module',
+  'name' => 'phone',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:14:{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:7:"version";s:13:"7.x-1.0-beta1";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1389732224";s:5:"mtime";i:1535762879;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/references/node_reference/node_reference.module',
+  'name' => 'node_reference',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-2.2";s:7:"project";s:10:"references";s:9:"datestamp";s:10:"1492534745";s:5:"mtime";i:1492534745;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-2.2";s:7:"project";s:10:"references";s:9:"datestamp";s:10:"1492534745";s:5:"mtime";i:1492534745;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:12:{s:4:"name";s:15:"References UUID";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:7:"version";s:7:"7.x-2.2";s:7:"project";s:10:"references";s:9:"datestamp";s:10:"1492534745";s:5:"mtime";i:1492534745;s:11:"description";s:0:"";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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:7:"7.x-2.2";s:7:"project";s:10:"references";s:9:"datestamp";s:10:"1492534745";s:5:"mtime";i:1492534745;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/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:1544936288;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:1544936288;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/telephone/telephone.module',
+  'name' => 'telephone',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:7:"version";s:14:"7.x-1.0-alpha1";s:7:"project";s:9:"telephone";s:9:"datestamp";s:10:"1389736105";s:5:"mtime";i:1389736105;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:1544915724;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' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '100',
+  'info' => 'a:13:{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:3:{i:0;s:12:"title.module";i:1;s:35:"views/views_handler_title_field.inc";i:2;s:16:"tests/title.test";}s:7:"version";s:14:"7.x-1.0-alpha9";s:7:"project";s:5:"title";s:9:"datestamp";s:10:"1484302985";s:5:"mtime";i:1484302985;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:12:{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:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;s:12:"dependencies";a:0:{}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:12:{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:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;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:12:{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:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7000',
+  'weight' => '-1000',
+  'info' => 'a:12:{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.5";s:5:"files";a:2:{i:0;s:24:"variable_realm.class.inc";i:1;s:30:"variable_realm_union.class.inc";}s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;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' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7000',
+  'weight' => '-1000',
+  'info' => 'a:12:{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.5";s:5:"files";a:2:{i:0;s:24:"variable_store.class.inc";i:1;s:19:"variable_store.test";}s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;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:12:{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:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/tests/views_test.module',
+  'name' => 'views_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{s:4:"name";s:10:"Views Test";s:11:"description";s:22:"Test module for Views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:6:"hidden";b:1;s:7:"version";s:8:"7.x-3.20";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1523668093";s:5:"mtime";i:1535762879;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/views.module',
+  'name' => 'views',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '7301',
+  'weight' => '10',
+  'info' => 'a:13:{s:4:"name";s:5:"Views";s:11:"description";s:55:"Create customized lists and queries from your database.";s:7:"package";s:5:"Views";s:4:"core";s:3:"7.x";s:3:"php";s:3:"5.2";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:13:"css/views.css";s:37:"sites/all/modules/views/css/views.css";}}s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:5:"files";a:297:{i:0;s:31:"handlers/views_handler_area.inc";i:1;s:38:"handlers/views_handler_area_result.inc";i:2;s:36:"handlers/views_handler_area_text.inc";i:3;s:43:"handlers/views_handler_area_text_custom.inc";i:4;s:36:"handlers/views_handler_area_view.inc";i:5;s:35:"handlers/views_handler_argument.inc";i:6;s:40:"handlers/views_handler_argument_date.inc";i:7;s:43:"handlers/views_handler_argument_formula.inc";i:8;s:47:"handlers/views_handler_argument_many_to_one.inc";i:9;s:40:"handlers/views_handler_argument_null.inc";i:10;s:43:"handlers/views_handler_argument_numeric.inc";i:11;s:42:"handlers/views_handler_argument_string.inc";i:12;s:52:"handlers/views_handler_argument_group_by_numeric.inc";i:13;s:32:"handlers/views_handler_field.inc";i:14;s:40:"handlers/views_handler_field_counter.inc";i:15;s:40:"handlers/views_handler_field_boolean.inc";i:16;s:49:"handlers/views_handler_field_contextual_links.inc";i:17;s:39:"handlers/views_handler_field_custom.inc";i:18;s:37:"handlers/views_handler_field_date.inc";i:19;s:39:"handlers/views_handler_field_entity.inc";i:20;s:39:"handlers/views_handler_field_markup.inc";i:21;s:37:"handlers/views_handler_field_math.inc";i:22;s:40:"handlers/views_handler_field_numeric.inc";i:23;s:47:"handlers/views_handler_field_prerender_list.inc";i:24;s:46:"handlers/views_handler_field_time_interval.inc";i:25;s:43:"handlers/views_handler_field_serialized.inc";i:26;s:45:"handlers/views_handler_field_machine_name.inc";i:27;s:36:"handlers/views_handler_field_url.inc";i:28;s:33:"handlers/views_handler_filter.inc";i:29;s:50:"handlers/views_handler_filter_boolean_operator.inc";i:30;s:57:"handlers/views_handler_filter_boolean_operator_string.inc";i:31;s:41:"handlers/views_handler_filter_combine.inc";i:32;s:38:"handlers/views_handler_filter_date.inc";i:33;s:42:"handlers/views_handler_filter_equality.inc";i:34;s:47:"handlers/views_handler_filter_entity_bundle.inc";i:35;s:50:"handlers/views_handler_filter_group_by_numeric.inc";i:36;s:45:"handlers/views_handler_filter_in_operator.inc";i:37;s:45:"handlers/views_handler_filter_many_to_one.inc";i:38;s:41:"handlers/views_handler_filter_numeric.inc";i:39;s:40:"handlers/views_handler_filter_string.inc";i:40;s:39:"handlers/views_handler_relationship.inc";i:41;s:53:"handlers/views_handler_relationship_groupwise_max.inc";i:42;s:31:"handlers/views_handler_sort.inc";i:43;s:36:"handlers/views_handler_sort_date.inc";i:44;s:39:"handlers/views_handler_sort_formula.inc";i:45;s:48:"handlers/views_handler_sort_group_by_numeric.inc";i:46;s:46:"handlers/views_handler_sort_menu_hierarchy.inc";i:47;s:38:"handlers/views_handler_sort_random.inc";i:48;s:17:"includes/base.inc";i:49;s:21:"includes/handlers.inc";i:50;s:20:"includes/plugins.inc";i:51;s:17:"includes/view.inc";i:52;s:60:"modules/aggregator/views_handler_argument_aggregator_fid.inc";i:53;s:60:"modules/aggregator/views_handler_argument_aggregator_iid.inc";i:54;s:69:"modules/aggregator/views_handler_argument_aggregator_category_cid.inc";i:55;s:64:"modules/aggregator/views_handler_field_aggregator_title_link.inc";i:56;s:62:"modules/aggregator/views_handler_field_aggregator_category.inc";i:57;s:70:"modules/aggregator/views_handler_field_aggregator_item_description.inc";i:58;s:57:"modules/aggregator/views_handler_field_aggregator_xss.inc";i:59;s:67:"modules/aggregator/views_handler_filter_aggregator_category_cid.inc";i:60;s:54:"modules/aggregator/views_plugin_row_aggregator_rss.inc";i:61;s:56:"modules/book/views_plugin_argument_default_book_root.inc";i:62;s:59:"modules/comment/views_handler_argument_comment_user_uid.inc";i:63;s:47:"modules/comment/views_handler_field_comment.inc";i:64;s:53:"modules/comment/views_handler_field_comment_depth.inc";i:65;s:52:"modules/comment/views_handler_field_comment_link.inc";i:66;s:60:"modules/comment/views_handler_field_comment_link_approve.inc";i:67;s:59:"modules/comment/views_handler_field_comment_link_delete.inc";i:68;s:57:"modules/comment/views_handler_field_comment_link_edit.inc";i:69;s:58:"modules/comment/views_handler_field_comment_link_reply.inc";i:70;s:57:"modules/comment/views_handler_field_comment_node_link.inc";i:71;s:56:"modules/comment/views_handler_field_comment_username.inc";i:72;s:61:"modules/comment/views_handler_field_ncs_last_comment_name.inc";i:73;s:56:"modules/comment/views_handler_field_ncs_last_updated.inc";i:74;s:52:"modules/comment/views_handler_field_node_comment.inc";i:75;s:57:"modules/comment/views_handler_field_node_new_comments.inc";i:76;s:62:"modules/comment/views_handler_field_last_comment_timestamp.inc";i:77;s:57:"modules/comment/views_handler_filter_comment_user_uid.inc";i:78;s:57:"modules/comment/views_handler_filter_ncs_last_updated.inc";i:79;s:53:"modules/comment/views_handler_filter_node_comment.inc";i:80;s:53:"modules/comment/views_handler_sort_comment_thread.inc";i:81;s:60:"modules/comment/views_handler_sort_ncs_last_comment_name.inc";i:82;s:55:"modules/comment/views_handler_sort_ncs_last_updated.inc";i:83;s:48:"modules/comment/views_plugin_row_comment_rss.inc";i:84;s:49:"modules/comment/views_plugin_row_comment_view.inc";i:85;s:52:"modules/contact/views_handler_field_contact_link.inc";i:86;s:43:"modules/field/views_handler_field_field.inc";i:87;s:59:"modules/field/views_handler_relationship_entity_reverse.inc";i:88;s:51:"modules/field/views_handler_argument_field_list.inc";i:89;s:58:"modules/field/views_handler_argument_field_list_string.inc";i:90;s:49:"modules/field/views_handler_filter_field_list.inc";i:91;s:57:"modules/filter/views_handler_field_filter_format_name.inc";i:92;s:52:"modules/locale/views_handler_field_node_language.inc";i:93;s:53:"modules/locale/views_handler_filter_node_language.inc";i:94;s:54:"modules/locale/views_handler_argument_locale_group.inc";i:95;s:57:"modules/locale/views_handler_argument_locale_language.inc";i:96;s:51:"modules/locale/views_handler_field_locale_group.inc";i:97;s:54:"modules/locale/views_handler_field_locale_language.inc";i:98;s:55:"modules/locale/views_handler_field_locale_link_edit.inc";i:99;s:52:"modules/locale/views_handler_filter_locale_group.inc";i:100;s:55:"modules/locale/views_handler_filter_locale_language.inc";i:101;s:54:"modules/locale/views_handler_filter_locale_version.inc";i:102;s:53:"modules/node/views_handler_argument_dates_various.inc";i:103;s:53:"modules/node/views_handler_argument_node_language.inc";i:104;s:48:"modules/node/views_handler_argument_node_nid.inc";i:105;s:49:"modules/node/views_handler_argument_node_type.inc";i:106;s:48:"modules/node/views_handler_argument_node_vid.inc";i:107;s:57:"modules/node/views_handler_argument_node_uid_revision.inc";i:108;s:59:"modules/node/views_handler_field_history_user_timestamp.inc";i:109;s:41:"modules/node/views_handler_field_node.inc";i:110;s:46:"modules/node/views_handler_field_node_link.inc";i:111;s:53:"modules/node/views_handler_field_node_link_delete.inc";i:112;s:51:"modules/node/views_handler_field_node_link_edit.inc";i:113;s:50:"modules/node/views_handler_field_node_revision.inc";i:114;s:55:"modules/node/views_handler_field_node_revision_link.inc";i:115;s:62:"modules/node/views_handler_field_node_revision_link_delete.inc";i:116;s:62:"modules/node/views_handler_field_node_revision_link_revert.inc";i:117;s:46:"modules/node/views_handler_field_node_path.inc";i:118;s:46:"modules/node/views_handler_field_node_type.inc";i:119;s:60:"modules/node/views_handler_filter_history_user_timestamp.inc";i:120;s:49:"modules/node/views_handler_filter_node_access.inc";i:121;s:49:"modules/node/views_handler_filter_node_status.inc";i:122;s:47:"modules/node/views_handler_filter_node_type.inc";i:123;s:55:"modules/node/views_handler_filter_node_uid_revision.inc";i:124;s:51:"modules/node/views_plugin_argument_default_node.inc";i:125;s:52:"modules/node/views_plugin_argument_validate_node.inc";i:126;s:42:"modules/node/views_plugin_row_node_rss.inc";i:127;s:43:"modules/node/views_plugin_row_node_view.inc";i:128;s:52:"modules/profile/views_handler_field_profile_date.inc";i:129;s:52:"modules/profile/views_handler_field_profile_list.inc";i:130;s:58:"modules/profile/views_handler_filter_profile_selection.inc";i:131;s:48:"modules/search/views_handler_argument_search.inc";i:132;s:51:"modules/search/views_handler_field_search_score.inc";i:133;s:46:"modules/search/views_handler_filter_search.inc";i:134;s:50:"modules/search/views_handler_sort_search_score.inc";i:135;s:47:"modules/search/views_plugin_row_search_view.inc";i:136;s:57:"modules/statistics/views_handler_field_accesslog_path.inc";i:137;s:50:"modules/system/views_handler_argument_file_fid.inc";i:138;s:43:"modules/system/views_handler_field_file.inc";i:139;s:53:"modules/system/views_handler_field_file_extension.inc";i:140;s:52:"modules/system/views_handler_field_file_filemime.inc";i:141;s:47:"modules/system/views_handler_field_file_uri.inc";i:142;s:50:"modules/system/views_handler_field_file_status.inc";i:143;s:51:"modules/system/views_handler_filter_file_status.inc";i:144;s:52:"modules/taxonomy/views_handler_argument_taxonomy.inc";i:145;s:57:"modules/taxonomy/views_handler_argument_term_node_tid.inc";i:146;s:63:"modules/taxonomy/views_handler_argument_term_node_tid_depth.inc";i:147;s:72:"modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc";i:148;s:58:"modules/taxonomy/views_handler_argument_vocabulary_vid.inc";i:149;s:67:"modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc";i:150;s:49:"modules/taxonomy/views_handler_field_taxonomy.inc";i:151;s:54:"modules/taxonomy/views_handler_field_term_node_tid.inc";i:152;s:55:"modules/taxonomy/views_handler_field_term_link_edit.inc";i:153;s:55:"modules/taxonomy/views_handler_filter_term_node_tid.inc";i:154;s:61:"modules/taxonomy/views_handler_filter_term_node_tid_depth.inc";i:155;s:56:"modules/taxonomy/views_handler_filter_vocabulary_vid.inc";i:156;s:65:"modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc";i:157;s:62:"modules/taxonomy/views_handler_relationship_node_term_data.inc";i:158;s:65:"modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc";i:159;s:63:"modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc";i:160;s:67:"modules/tracker/views_handler_argument_tracker_comment_user_uid.inc";i:161;s:65:"modules/tracker/views_handler_filter_tracker_comment_user_uid.inc";i:162;s:65:"modules/tracker/views_handler_filter_tracker_boolean_operator.inc";i:163;s:51:"modules/system/views_handler_filter_system_type.inc";i:164;s:56:"modules/translation/views_handler_argument_node_tnid.inc";i:165;s:63:"modules/translation/views_handler_field_node_link_translate.inc";i:166;s:65:"modules/translation/views_handler_field_node_translation_link.inc";i:167;s:54:"modules/translation/views_handler_filter_node_tnid.inc";i:168;s:60:"modules/translation/views_handler_filter_node_tnid_child.inc";i:169;s:62:"modules/translation/views_handler_relationship_translation.inc";i:170;s:48:"modules/user/views_handler_argument_user_uid.inc";i:171;s:55:"modules/user/views_handler_argument_users_roles_rid.inc";i:172;s:41:"modules/user/views_handler_field_user.inc";i:173;s:50:"modules/user/views_handler_field_user_language.inc";i:174;s:46:"modules/user/views_handler_field_user_link.inc";i:175;s:53:"modules/user/views_handler_field_user_link_cancel.inc";i:176;s:51:"modules/user/views_handler_field_user_link_edit.inc";i:177;s:46:"modules/user/views_handler_field_user_mail.inc";i:178;s:46:"modules/user/views_handler_field_user_name.inc";i:179;s:53:"modules/user/views_handler_field_user_permissions.inc";i:180;s:49:"modules/user/views_handler_field_user_picture.inc";i:181;s:47:"modules/user/views_handler_field_user_roles.inc";i:182;s:50:"modules/user/views_handler_filter_user_current.inc";i:183;s:47:"modules/user/views_handler_filter_user_name.inc";i:184;s:54:"modules/user/views_handler_filter_user_permissions.inc";i:185;s:48:"modules/user/views_handler_filter_user_roles.inc";i:186;s:59:"modules/user/views_plugin_argument_default_current_user.inc";i:187;s:51:"modules/user/views_plugin_argument_default_user.inc";i:188;s:52:"modules/user/views_plugin_argument_validate_user.inc";i:189;s:43:"modules/user/views_plugin_row_user_view.inc";i:190;s:31:"plugins/views_plugin_access.inc";i:191;s:36:"plugins/views_plugin_access_none.inc";i:192;s:36:"plugins/views_plugin_access_perm.inc";i:193;s:36:"plugins/views_plugin_access_role.inc";i:194;s:41:"plugins/views_plugin_argument_default.inc";i:195;s:45:"plugins/views_plugin_argument_default_php.inc";i:196;s:47:"plugins/views_plugin_argument_default_fixed.inc";i:197;s:45:"plugins/views_plugin_argument_default_raw.inc";i:198;s:42:"plugins/views_plugin_argument_validate.inc";i:199;s:50:"plugins/views_plugin_argument_validate_numeric.inc";i:200;s:46:"plugins/views_plugin_argument_validate_php.inc";i:201;s:30:"plugins/views_plugin_cache.inc";i:202;s:35:"plugins/views_plugin_cache_none.inc";i:203;s:35:"plugins/views_plugin_cache_time.inc";i:204;s:32:"plugins/views_plugin_display.inc";i:205;s:43:"plugins/views_plugin_display_attachment.inc";i:206;s:38:"plugins/views_plugin_display_block.inc";i:207;s:40:"plugins/views_plugin_display_default.inc";i:208;s:38:"plugins/views_plugin_display_embed.inc";i:209;s:41:"plugins/views_plugin_display_extender.inc";i:210;s:37:"plugins/views_plugin_display_feed.inc";i:211;s:37:"plugins/views_plugin_display_page.inc";i:212;s:43:"plugins/views_plugin_exposed_form_basic.inc";i:213;s:37:"plugins/views_plugin_exposed_form.inc";i:214;s:52:"plugins/views_plugin_exposed_form_input_required.inc";i:215;s:42:"plugins/views_plugin_localization_core.inc";i:216;s:37:"plugins/views_plugin_localization.inc";i:217;s:42:"plugins/views_plugin_localization_none.inc";i:218;s:30:"plugins/views_plugin_pager.inc";i:219;s:35:"plugins/views_plugin_pager_full.inc";i:220;s:35:"plugins/views_plugin_pager_mini.inc";i:221;s:35:"plugins/views_plugin_pager_none.inc";i:222;s:35:"plugins/views_plugin_pager_some.inc";i:223;s:30:"plugins/views_plugin_query.inc";i:224;s:38:"plugins/views_plugin_query_default.inc";i:225;s:28:"plugins/views_plugin_row.inc";i:226;s:35:"plugins/views_plugin_row_fields.inc";i:227;s:39:"plugins/views_plugin_row_rss_fields.inc";i:228;s:30:"plugins/views_plugin_style.inc";i:229;s:38:"plugins/views_plugin_style_default.inc";i:230;s:35:"plugins/views_plugin_style_grid.inc";i:231;s:35:"plugins/views_plugin_style_list.inc";i:232;s:40:"plugins/views_plugin_style_jump_menu.inc";i:233;s:38:"plugins/views_plugin_style_mapping.inc";i:234;s:34:"plugins/views_plugin_style_rss.inc";i:235;s:38:"plugins/views_plugin_style_summary.inc";i:236;s:48:"plugins/views_plugin_style_summary_jump_menu.inc";i:237;s:50:"plugins/views_plugin_style_summary_unformatted.inc";i:238;s:36:"plugins/views_plugin_style_table.inc";i:239;s:43:"tests/handlers/views_handler_area_text.test";i:240;s:47:"tests/handlers/views_handler_argument_null.test";i:241;s:49:"tests/handlers/views_handler_argument_string.test";i:242;s:39:"tests/handlers/views_handler_field.test";i:243;s:47:"tests/handlers/views_handler_field_boolean.test";i:244;s:46:"tests/handlers/views_handler_field_custom.test";i:245;s:47:"tests/handlers/views_handler_field_counter.test";i:246;s:44:"tests/handlers/views_handler_field_date.test";i:247;s:49:"tests/handlers/views_handler_field_file_size.test";i:248;s:44:"tests/handlers/views_handler_field_math.test";i:249;s:43:"tests/handlers/views_handler_field_url.test";i:250;s:43:"tests/handlers/views_handler_field_xss.test";i:251;s:48:"tests/handlers/views_handler_filter_combine.test";i:252;s:45:"tests/handlers/views_handler_filter_date.test";i:253;s:49:"tests/handlers/views_handler_filter_equality.test";i:254;s:52:"tests/handlers/views_handler_filter_in_operator.test";i:255;s:48:"tests/handlers/views_handler_filter_numeric.test";i:256;s:47:"tests/handlers/views_handler_filter_string.test";i:257;s:45:"tests/handlers/views_handler_sort_random.test";i:258;s:43:"tests/handlers/views_handler_sort_date.test";i:259;s:38:"tests/handlers/views_handler_sort.test";i:260;s:60:"tests/test_plugins/views_test_plugin_access_test_dynamic.inc";i:261;s:59:"tests/test_plugins/views_test_plugin_access_test_static.inc";i:262;s:59:"tests/test_plugins/views_test_plugin_style_test_mapping.inc";i:263;s:39:"tests/plugins/views_plugin_display.test";i:264;s:46:"tests/styles/views_plugin_style_jump_menu.test";i:265;s:36:"tests/styles/views_plugin_style.test";i:266;s:41:"tests/styles/views_plugin_style_base.test";i:267;s:44:"tests/styles/views_plugin_style_mapping.test";i:268;s:48:"tests/styles/views_plugin_style_unformatted.test";i:269;s:23:"tests/views_access.test";i:270;s:24:"tests/views_analyze.test";i:271;s:22:"tests/views_basic.test";i:272;s:33:"tests/views_argument_default.test";i:273;s:35:"tests/views_argument_validator.test";i:274;s:29:"tests/views_exposed_form.test";i:275;s:31:"tests/field/views_fieldapi.test";i:276;s:25:"tests/views_glossary.test";i:277;s:24:"tests/views_groupby.test";i:278;s:25:"tests/views_handlers.test";i:279;s:23:"tests/views_module.test";i:280;s:22:"tests/views_pager.test";i:281;s:40:"tests/views_plugin_localization_test.inc";i:282;s:29:"tests/views_translatable.test";i:283;s:22:"tests/views_query.test";i:284;s:24:"tests/views_upgrade.test";i:285;s:34:"tests/views_test.views_default.inc";i:286;s:58:"tests/comment/views_handler_argument_comment_user_uid.test";i:287;s:56:"tests/comment/views_handler_filter_comment_user_uid.test";i:288;s:45:"tests/node/views_node_revision_relations.test";i:289;s:61:"tests/taxonomy/views_handler_relationship_node_term_data.test";i:290;s:45:"tests/user/views_handler_field_user_name.test";i:291;s:43:"tests/user/views_user_argument_default.test";i:292;s:44:"tests/user/views_user_argument_validate.test";i:293;s:26:"tests/user/views_user.test";i:294;s:22:"tests/views_cache.test";i:295;s:21:"tests/views_view.test";i:296;s:19:"tests/views_ui.test";}s:7:"version";s:7:"7.x-3.7";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1365499236";s:5:"mtime";i:1365499236;s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/views/views_ui.module',
+  'name' => 'views_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:13:{s:4:"name";s:8:"Views UI";s:11:"description";s:93:"Administrative interface to views. Without this module, you cannot create or edit your views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"7.x";s:9:"configure";s:21:"admin/structure/views";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:5:"files";a:2:{i:0;s:15:"views_ui.module";i:1;s:57:"plugins/views_wizard/views_ui_base_views_wizard.class.php";}s:7:"version";s:7:"7.x-3.7";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1365499236";s:5:"mtime";i:1365499236;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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}',
+))
+->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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}',
+))
+->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:18:{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.40";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:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1444866674";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:1444866674;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}',
+))
+->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:17:{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.40\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";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:1444866674;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}",
+))
+->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' => 'normal',
+      'default' => '0',
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('taxonomy_index')
+->fields(array(
+  'nid',
+  'tid',
+  'sticky',
+  'created',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1504715414',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1504715432',
+))
+->values(array(
+  'nid' => '3',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1471428152',
+))
+->values(array(
+  'nid' => '3',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1471428152',
+))
+->values(array(
+  'nid' => '3',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1471428152',
+))
+->values(array(
+  'nid' => '3',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1471428152',
+))
+->values(array(
+  'nid' => '3',
+  'tid' => '23',
+  'sticky' => '0',
+  'created' => '1471428152',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '21',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->values(array(
+  'nid' => '2',
+  'tid' => '24',
+  'sticky' => '0',
+  'created' => '1441306772',
+))
+->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' => '2',
+  'vid' => '3',
+  'name' => 'Term1',
+  'description' => 'The first term.',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '3',
+  'vid' => '3',
+  'name' => 'Term2',
+  'description' => 'The second term.',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '4',
+  'vid' => '3',
+  'name' => 'Term3',
+  'description' => 'The third term.',
+  'format' => 'full_html',
+  'weight' => '0',
+  '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',
+))
+->values(array(
+  'tid' => '9',
+  'vid' => '1',
+  'name' => 'Benjamin Sisko',
+  'description' => 'Portrayed by Avery Brooks',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '10',
+  'vid' => '1',
+  'name' => 'Kira Nerys',
+  'description' => 'Portrayed by Nana Visitor',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '11',
+  'vid' => '1',
+  'name' => 'Dax',
+  'description' => 'Portrayed by Terry Farrell',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '12',
+  'vid' => '1',
+  'name' => 'Jake Sisko',
+  'description' => 'Portrayed by Cirroc Lofton',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '13',
+  'vid' => '1',
+  'name' => 'Gul Dukat',
+  'description' => 'Portrayed by Marc Alaimo',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '14',
+  'vid' => '1',
+  'name' => 'Odo',
+  'description' => 'Portrayed by Rene Auberjonois',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '15',
+  'vid' => '1',
+  'name' => 'Worf',
+  'description' => 'Portrayed by Michael Dorn',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '16',
+  'vid' => '1',
+  'name' => "Miles O'Brien",
+  'description' => 'Portrayed by Colm Meaney',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '17',
+  'vid' => '1',
+  'name' => 'Quark',
+  'description' => 'Portrayed by Armin Shimerman',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '18',
+  'vid' => '1',
+  'name' => 'Elim Garak',
+  'description' => 'Portrayed by Andrew Robinson',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '19',
+  'vid' => '5',
+  'name' => 'Jupiter Station',
+  'description' => 'Holographic research.',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '20',
+  'vid' => '5',
+  'name' => 'DS9',
+  'description' => 'Terok Nor',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '21',
+  'vid' => '6',
+  'name' => 'High council',
+  'description' => '',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'en',
+  'i18n_tsid' => '1',
+))
+->values(array(
+  'tid' => '22',
+  'vid' => '6',
+  'name' => 'fr - High council',
+  'description' => NULL,
+  'format' => NULL,
+  'weight' => '0',
+  'language' => 'fr',
+  'i18n_tsid' => '1',
+))
+->values(array(
+  'tid' => '23',
+  'vid' => '6',
+  'name' => 'is - High council',
+  'description' => NULL,
+  'format' => NULL,
+  'weight' => '0',
+  'language' => 'is',
+  'i18n_tsid' => '1',
+))
+->values(array(
+  'tid' => '24',
+  'vid' => '7',
+  'name' => 'FR - Crewman',
+  'description' => '',
+  'format' => 'filtered_html',
+  'weight' => '0',
+  'language' => 'fr',
+  'i18n_tsid' => '0',
+))
+->values(array(
+  'tid' => '25',
+  'vid' => '8',
+  'name' => 'Emissary',
+  'description' => 'Pilot episode',
+  'format' => 'filtered_html',
+  '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' => '2',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '3',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '5',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '6',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '9',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '10',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '11',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '12',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '13',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '14',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '15',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '16',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '17',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '18',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '19',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '20',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '21',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '22',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '23',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '24',
+  'parent' => '0',
+))
+->values(array(
+  'tid' => '4',
+  'parent' => '3',
+))
+->values(array(
+  'tid' => '7',
+  'parent' => '6',
+))
+->values(array(
+  'tid' => '8',
+  'parent' => '6',
+))
+->values(array(
+  'tid' => '25',
+  'parent' => '0',
+))
+->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' => 'Sujet de discussion',
+  'machine_name' => 'sujet_de_discussion',
+  'description' => 'Forum navigation vocabulary',
+  'hierarchy' => '1',
+  'module' => 'forum',
+  'weight' => '-10',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'vid' => '3',
+  'name' => 'Test Vocabulary',
+  'machine_name' => 'test_vocabulary',
+  'description' => 'This is the vocabulary description',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'vid' => '4',
+  'name' => 'vocabulary name clearly different than machine name and much longer than thirty two characters',
+  'machine_name' => 'vocabulary_name_much_longer_than_thirty_two_characters',
+  'description' => 'description of vocabulary name much longer than thirty two characters',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_mode' => '0',
+))
+->values(array(
+  'vid' => '5',
+  'name' => 'VocabLocalized',
+  'machine_name' => 'vocablocalized',
+  'description' => 'Vocabulary localize option',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_mode' => '1',
+))
+->values(array(
+  'vid' => '6',
+  'name' => 'VocabTranslate',
+  'machine_name' => 'vocabtranslate',
+  'description' => 'Vocabulary translate option',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_mode' => '4',
+))
+->values(array(
+  'vid' => '7',
+  'name' => 'VocabFixed',
+  'machine_name' => 'vocabfixed',
+  'description' => 'Vocabulary fixed option',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'fr',
+  'i18n_mode' => '2',
+))
+->values(array(
+  'vid' => '8',
+  'name' => 'VocabLocalized2',
+  'machine_name' => 'vocablocalized2',
+  'description' => '',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_mode' => '1',
+))
+->execute();
+$connection->schema()->createTable('tracker_node', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'published' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('tracker_node')
+->fields(array(
+  'nid',
+  'published',
+  'changed',
+))
+->values(array(
+  'nid' => '1',
+  'published' => '1',
+  'changed' => '1421727536',
+))
+->execute();
+$connection->schema()->createTable('tracker_user', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'published' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+    'uid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('tracker_user')
+->fields(array(
+  'nid',
+  'uid',
+  'published',
+  'changed',
+))
+->values(array(
+  'nid' => '1',
+  'uid' => '2',
+  'published' => '1',
+  'changed' => '1421727536',
+))
+->execute();
+$connection->schema()->createTable('trigger_assignments', array(
+  'fields' => array(
+    'hook' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '78',
+      'default' => '',
+    ),
+    'aid' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'hook',
+    'aid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('trigger_assignments')
+->fields(array(
+  'hook',
+  'aid',
+  'weight',
+))
+->values(array(
+  'hook' => 'comment_presave',
+  'aid' => 'comment_publish_action',
+  'weight' => '1',
+))
+->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' => '1',
+  'source' => 'taxonomy/term/4',
+  'alias' => 'term33',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '2',
+  'source' => 'node/2',
+  'alias' => 'deep-space-9',
+  'language' => 'en',
+))
+->values(array(
+  'pid' => '3',
+  'source' => 'node/3',
+  'alias' => 'deep-space-9-is',
+  'language' => 'is',
+))
+->values(array(
+  'pid' => '4',
+  'source' => 'node/4',
+  'alias' => 'firefly-is',
+  'language' => 'is',
+))
+->values(array(
+  'pid' => '5',
+  'source' => 'node/5',
+  'alias' => 'firefly',
+  'language' => 'en',
+))
+->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',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  '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',
+))
+->values(array(
+  'uid' => '1',
+  'name' => 'admin',
+  'pass' => '$S$D/HVkgCg1Hvi7DN5KVSgNl.2C5g8W6oe/OoIRMUlyjkmPugQRhoB',
+  'mail' => 'admin@local.host',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '0',
+  'access' => '1444945097',
+  'login' => '1444945097',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => 'a:1:{s:7:"contact";i:1;}',
+))
+->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;}',
+))
+->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;}',
+))
+->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_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:13:"edit-workflow";',
+))
+->values(array(
+  'name' => 'admin_compact_mode',
+  'value' => 'b:1;',
+))
+->values(array(
+  'name' => 'admin_theme',
+  'value' => 's:5:"seven";',
+))
+->values(array(
+  'name' => 'aggregator_allowed_html_tags',
+  'value' => 's:13:"<p> <div> <a>";',
+))
+->values(array(
+  'name' => 'aggregator_clear',
+  'value' => 'i:86400;',
+))
+->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_summary_items',
+  'value' => 'i:6;',
+))
+->values(array(
+  'name' => 'aggregator_teaser_length',
+  'value' => 'i:500;',
+))
+->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' => 'book_allowed_types',
+  'value' => 'a:1:{i:0;s:4:"book";}',
+))
+->values(array(
+  'name' => 'book_block_mode',
+  'value' => 's:9:"all pages";',
+))
+->values(array(
+  'name' => 'book_child_type',
+  'value' => 's:4:"book";',
+))
+->values(array(
+  'name' => 'cache',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cache_flush_cache',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_block',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_field',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_filter',
+  'value' => 'i:1444944970;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_form',
+  'value' => 'i:1444944970;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_image',
+  'value' => 'i:1444944970;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_menu',
+  'value' => 'i:1444944970;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cache_flush_cache_path',
+  'value' => 'i:1444944970;',
+))
+->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_book',
+  '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_book',
+  '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_book',
+  '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_book',
+  '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:"30";',
+))
+->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_book',
+  '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_book',
+  '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_book',
+  '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:0;',
+))
+->values(array(
+  'name' => 'comment_test_content_type',
+  'value' => 's:1:"2";',
+))
+->values(array(
+  'name' => 'configurable_timezones',
+  'value' => 'b:1;',
+))
+->values(array(
+  'name' => 'contact_default_status',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'contact_threshold_limit',
+  'value' => 'i:33;',
+))
+->values(array(
+  'name' => 'contact_threshold_window',
+  'value' => 'i:7200;',
+))
+->values(array(
+  'name' => 'cron_key',
+  'value' => 's:43:"_vWFj-dRR2rNoHDwl7N__J9uZNutDcLz3w4tlPJzRAM";',
+))
+->values(array(
+  'name' => 'cron_last',
+  'value' => 'i:1444944970;',
+))
+->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:"nwa6nq";',
+))
+->values(array(
+  'name' => 'ctools_last_cron',
+  'value' => 'i:1421720834;',
+))
+->values(array(
+  'name' => 'dashboard_stashed_blocks',
+  'value' => 'a:5:{i:0;a:3:{s:6:"module";s:4:"node";s:5:"delta";s:6:"recent";s:6:"region";s:14:"dashboard_main";}i:1;a:3:{s:6:"module";s:4:"user";s:5:"delta";s:3:"new";s:6:"region";s:17:"dashboard_sidebar";}i:2;a:3:{s:6:"module";s:6:"search";s:5:"delta";s:4:"form";s:6:"region";s:17:"dashboard_sidebar";}i:3;a:3:{s:6:"module";s:7:"comment";s:5:"delta";s:6:"recent";s:6:"region";s:18:"dashboard_inactive";}i:4;a:3:{s:6:"module";s:4:"user";s:5:"delta";s:6:"online";s:6:"region";s:18:"dashboard_inactive";}}',
+))
+->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' => 'dblog_row_limit',
+  'value' => 'i:10000;',
+))
+->values(array(
+  'name' => 'default_nodes_main',
+  'value' => 's:2:"10";',
+))
+->values(array(
+  'name' => 'drupal_css_cache_files',
+  'value' => 'a:10:{s:64:"823ba1006db72809515d2221cd02ec1075d7b49b0c07f49307b3a7930bfdd9e4";s:64:"public://css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css";s:64:"039ba69b25efd672767c5ee21b686a2cdaa496c5fb210693b88f81cc556db518";s:64:"public://css/css_M8BpLSgFJ1ipHW-ZwVd6p7yRHsT3q23ohYErZrFJ1xA.css";s:64:"568f3bca87830de88c7b44e71808ac7f33f4cdf273ed3bf3d2532bd48f084b06";s:64:"public://css/css_NRg0AX3iY_x0OX3_WzcWp90JnwurHRvZn6i75GL0rRI.css";s:64:"586e4d641f74d0fbdea2ecffe62294e983c5961df8d0128aab1c561505f6b35a";s:64:"public://css/css_2THG1eGiBIizsWFeexsNe1iDifJ00QRS9uSd03rY9co.css";s:64:"cb9f93e666a396bb3eb14c5fd16f7ebd1cdd0067733eb0a2ab1b294b6f14f76f";s:64:"public://css/css_1kF33EODTO5gDyEbdpAfYzMKbjG3ottD1s5np0BNI8U.css";s:64:"35337ea541d4968f58917d83eaa9e495d5a38bb0aaf23bc714650d3c71fc275a";s:64:"public://css/css_LJ87GFKz9ZFt2bWZ4pMV8e2o8w_790Mbwcd7C-RKri0.css";s:64:"592db66916e1dd3416cbe95bcb34a5a68775eb0b7cf95e4c858671de35290cc9";s:64:"public://css/css_LS9OUalDR9-d_lCAvF3yUWjNU6yF8ZBm84jEPRvoyuQ.css";s:64:"fe9fca5a618e55058e69458a65b2edb4e958c16c13e1d1526c4dc0c0e782b483";s:64:"public://css/css_WWafHiT44xXp69Ucog34hgXKsZRScJzl3S17Xg7evtM.css";s:64:"ebb3f433ad4107b1ac31e9d7de0f9a5d399040e9f82b6364211dcfaadea158c0";s:64:"public://css/css_Nv0ct-zkzztuah_LbaPFF8ZkdSEk-LxBtTWMm9mN_F8.css";s:64:"032d72e2b3124645b11e59c23005327dc2b450af6aaa6bf3cad34a6a65a9d774";s:64:"public://css/css_ZDWl28hdmeinIcKg-HMrN6uKD0nTMld5NlXLmm5MH2U.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' => 'entityreference:base-tables',
+  'value' => 'a:7:{s:4:"node";a:2:{i:0;s:4:"node";i:1;s:3:"nid";}s:13:"taxonomy_term";a:2:{i:0;s:18:"taxonomy_term_data";i:1;s:3:"tid";}s:7:"comment";a:2:{i:0;s:7:"comment";i:1;s:3:"cid";}s:16:"i18n_translation";a:2:{i:0;s:20:"i18n_translation_set";i:1;s:4:"tsid";}s:4:"file";a:2:{i:0;s:12:"file_managed";i:1;s:3:"fid";}s:19:"taxonomy_vocabulary";a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;s:3:"vid";}s:4:"user";a:2:{i:0;s:5:"users";i:1;s:3:"uid";}}',
+))
+->values(array(
+  'name' => 'entity_translation_entity_types',
+  'value' => 'a:4:{s:7:"comment";s:7:"comment";s:4:"node";s:4:"node";s:13:"taxonomy_term";s:13:"taxonomy_term";s:4:"user";s:4:"user";}',
+))
+->values(array(
+  'name' => 'entity_translation_settings_comment__comment_node_test_content_type',
+  'value' => 'a:5:{s:16:"default_language";s:13:"xx-et-current";s:22:"hide_language_selector";i:1;s:21:"exclude_language_none";i:0;s:13:"lock_language";i:0;s:27:"shared_fields_original_only";i:0;}',
+))
+->values(array(
+  'name' => 'entity_translation_settings_node__test_content_type',
+  'value' => 'a:5:{s:16:"default_language";s:3:"und";s:22:"hide_language_selector";i:0;s:21:"exclude_language_none";i:0;s:13:"lock_language";i:0;s:27:"shared_fields_original_only";i:0;}',
+))
+->values(array(
+  'name' => 'entity_translation_settings_taxonomy_term__test_vocabulary',
+  'value' => 'a:5:{s:16:"default_language";s:13:"xx-et-default";s:22:"hide_language_selector";i:1;s:21:"exclude_language_none";i:0;s:13:"lock_language";i:0;s:27:"shared_fields_original_only";i:0;}',
+))
+->values(array(
+  'name' => 'entity_translation_settings_user__user',
+  'value' => 'a:5:{s:16:"default_language";s:13:"xx-et-default";s:22:"hide_language_selector";i:1;s:21:"exclude_language_none";i:0;s:13:"lock_language";i:0;s:27:"shared_fields_original_only";i:0;}',
+))
+->values(array(
+  'name' => 'entity_translation_taxonomy',
+  'value' => 'a:4:{s:15:"test_vocabulary";b:1;s:14:"vocablocalized";b:0;s:14:"vocabtranslate";b:0;s:10:"vocabfixed";b:0;}',
+))
+->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_comment__comment_node_test_content_type',
+  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:2:{s:6:"author";a:1:{s:6:"weight";s:2:"-2";}s:7:"subject";a:1:{s:6:"weight";s:2:"-1";}}s:7:"display";a:0:{}}}',
+))
+->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_node__test_content_type',
+  'value' => 'a:2:{s:10:"view_modes";a:6:{s:6:"teaser";a:1:{s:15:"custom_settings";b:1;}s:4:"full";a:1:{s:15:"custom_settings";b:0;}s:3:"rss";a:1:{s:15:"custom_settings";b:0;}s:12:"search_index";a:1:{s:15:"custom_settings";b:0;}s:13:"search_result";a:1:{s:15:"custom_settings";b:0;}s:5:"print";a:1:{s:15:"custom_settings";b:0;}}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:1:"0";}}s:7:"display";a:0:{}}}',
+))
+->values(array(
+  'name' => 'field_bundle_settings_taxonomy_term__vocabfixed',
+  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:2:{s:4:"name";a:1:{s:6:"weight";s:2:"-5";}s:11:"description";a:1:{s:6:"weight";s:1:"0";}}s:7:"display";a:0:{}}}',
+))
+->values(array(
+  'name' => 'field_bundle_settings_taxonomy_term__vocablocalized',
+  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:2:{s:4:"name";a:1:{s:6:"weight";s:2:"-5";}s:11:"description";a:1:{s:6:"weight";s:1:"0";}}s:7:"display";a:0:{}}}',
+))
+->values(array(
+  'name' => 'field_bundle_settings_taxonomy_term__vocabtranslate',
+  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:3:{s:4:"name";a:1:{s:6:"weight";s:2:"-5";}s:11:"description";a:1:{s:6:"weight";s:1:"0";}s:8:"language";a:1:{s:6:"weight";s:1:"0";}}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:33:"core/modules/image/testsample.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:17:{i:0;s:14:"misc/drupal.js";i:1;s:14:"misc/jquery.js";i:2;s:19:"misc/jquery.once.js";i:3;s:32:"modules/contextual/contextual.js";i:4;s:21:"misc/jquery.cookie.js";i:5;s:26:"modules/toolbar/toolbar.js";i:6;s:19:"misc/tableheader.js";i:7;s:12:"misc/form.js";i:8;s:16:"misc/collapse.js";i:9;s:17:"misc/tabledrag.js";s:10:"refresh:is";s:7:"waiting";i:10;s:20:"misc/machine-name.js";i:11;s:16:"misc/textarea.js";i:12;s:36:"modules/comment/comment-node-form.js";i:13;s:26:"modules/menu/menu.admin.js";i:14;s:21:"misc/vertical-tabs.js";i:15;s:29:"modules/node/content_types.js";}',
+))
+->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:"4";',
+))
+->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:"4";',
+))
+->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' => 'i:0;',
+))
+->values(array(
+  'name' => 'maintenance_mode_message',
+  'value' => 's:42:"This is a custom maintenance mode message.";',
+))
+->values(array(
+  'name' => 'menu_expanded',
+  'value' => 'a:0:{}',
+))
+->values(array(
+  'name' => 'menu_masks',
+  'value' => 'a:47:{i:0;i:501;i:1;i:493;i:2;i:490;i:3;i:250;i:4;i:247;i:5;i:246;i:6;i:245;i:7;i:242;i:8;i:238;i:9;i:234;i:10;i:126;i:11;i:125;i:12;i:123;i:13;i:122;i:14;i:121;i:15;i:119;i:16;i:117;i:17;i:108;i:18;i:63;i:19;i:62;i:20;i:61;i:21;i:60;i:22;i:59;i:23;i:58;i:24;i:56;i:25;i:54;i:26;i:44;i:27;i:31;i:28;i:30;i:29;i:29;i:30;i:26;i:31;i:24;i:32;i:22;i:33;i:21;i:34;i:15;i:35;i:14;i:36;i:13;i:37;i:12;i:38;i:11;i:39;i:10;i:40;i:8;i:41;i:7;i:42;i:6;i:43;i:5;i:44;i:3;i:45;i:2;i:46;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_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:4:{i:0;s:9:"main-menu";i:1;s:10:"management";i:2;s:10:"navigation";i:3;s:9:"user-menu";}',
+))
+->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_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:"1441306832";',
+))
+->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_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:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:8:"revision";}',
+))
+->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_book',
+  '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_forum',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'node_submitted_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'node_submitted_test_content_type',
+  'value' => 'i:0;',
+))
+->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_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' => 'simpletest_clear_results',
+  'value' => 'b:1;',
+))
+->values(array(
+  'name' => 'simpletest_httpauth_method',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'simpletest_httpauth_password',
+  'value' => 's:6:"foobaz";',
+))
+->values(array(
+  'name' => 'simpletest_httpauth_username',
+  'value' => 's:7:"testbot";',
+))
+->values(array(
+  'name' => 'simpletest_verbose',
+  'value' => 'b:1;',
+))
+->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' => 'statistics_count_content_views',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'statistics_count_content_views_ajax',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'statistics_day_timestamp',
+  'value' => 'i:1444944970;',
+))
+->values(array(
+  'name' => 'statistics_enable_access_log',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'statistics_flush_accesslog_timer',
+  'value' => 's:4:"3600";',
+))
+->values(array(
+  'name' => 'suppress_itok_output',
+  'value' => 'b:1;',
+))
+->values(array(
+  'name' => 'syslog_facility',
+  'value' => 'i:8;',
+))
+->values(array(
+  'name' => 'syslog_format',
+  'value' => 's:72:"!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message";',
+))
+->values(array(
+  'name' => 'syslog_identity',
+  'value' => 's:6:"drupal";',
+))
+->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' => 'tracker_batch_size',
+  'value' => 'i:999;',
+))
+->values(array(
+  'name' => 'update_check_frequency',
+  'value' => 'i:1;',
+))
+->values(array(
+  'name' => 'update_fetch_url',
+  'value' => 's:23:"http://127.0.0.1/update";',
+))
+->values(array(
+  'name' => 'update_last_check',
+  'value' => 'i:1444944973;',
+))
+->values(array(
+  'name' => 'update_max_fetch_attempts',
+  'value' => 'i:3;',
+))
+->values(array(
+  'name' => 'update_notification_threshold',
+  'value' => 's:3:"all";',
+))
+->values(array(
+  'name' => 'update_notify_emails',
+  'value' => 'a:1:{i:0;s:19:"webmaster@127.0.0.1";}',
+))
+->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:4:{s:6:"locale";a:5:{i:0;s:29:"language_content_type_article";i:1;s:26:"language_content_type_page";i:2;s:26:"language_content_type_book";i:3;s:39:"language_content_type_test_content_type";i:4;s:16:"language_default";}s:4:"i18n";a:1:{i:0;s:18:"i18n_language_list";}s:14:"variable_realm";a:4:{i:0;s:26:"variable_realm_list_global";i:1;s:28:"variable_realm_list_language";i:2;s:28:"variable_realm_weight_global";i:3;s:30:"variable_realm_weight_language";}s:13:"i18n_variable";a:2:{i:0;s:18:"i18n_variable_conf";i:1;s:18:"i18n_variable_list";}}',
+))
+->values(array(
+  'name' => 'variable_realm_list_language',
+  'value' => 'a:3:{i:0;s:9:"site_name";i:1;s:11:"site_slogan";i:2;s:24:"maintenance_mode_message";}',
+))
+->execute();
+$connection->schema()->createTable('variable_store', array(
+  'fields' => array(
+    'realm' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '50',
+      'default' => '',
+    ),
+    'realm_key' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '50',
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'small',
+      'default' => '1',
+    ),
+  ),
+  'primary key' => array(
+    'realm',
+    'realm_key',
+    'name',
+  ),
+  'indexes' => array(
+    'realm_value' => array(
+      'realm',
+      'realm_key',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('variable_store')
+->fields(array(
+  'realm',
+  'realm_key',
+  'name',
+  'value',
+  'serialized',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'anonymous',
+  'value' => 'is - anonymous',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'maintenance_mode_message',
+  'value' => 'is - This is a custom maintenance mode message.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'site_403',
+  'value' => 'node',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'site_403',
+  'value' => 'node/1',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'site_404',
+  'value' => 'node',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'site_404',
+  'value' => 'node/6',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'site_frontpage',
+  'value' => 'node',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'site_frontpage',
+  'value' => 'node/4',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'site_name',
+  'value' => 'The Site Name',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'site_name',
+  'value' => 'is - The Site Name',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'site_slogan',
+  'value' => 'fr - The Slogan',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'site_slogan',
+  'value' => 'is - The Slogan',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'en',
+  'name' => 'user_default_timezone',
+  'value' => '2',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'fr',
+  'name' => 'user_default_timezone',
+  'value' => '0',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_cancel_confirm_body',
+  'value' => 'is - A little birdie said you wanted to cancel your account.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_cancel_confirm_subject',
+  'value' => 'is - Are you sure?',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_password_reset_body',
+  'value' => "is - Nope! You're locked out forever.",
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_password_reset_subject',
+  'value' => 'is - Fix your password',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_admin_created_body',
+  'value' => "is - ...and it could be taken away.\r\n[site:name], [site:url]",
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_admin_created_subject',
+  'value' => 'is - Gawd made you an account',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_no_approval_required_body',
+  'value' => 'is - You can now log in if you can figure out how to use Drupal!',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_no_approval_required_subject',
+  'value' => 'is - Welcome!',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_pending_approval_body',
+  'value' => 'is - ...you will join our Circle. Let the Drupal flow through you.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_register_pending_approval_subject',
+  'value' => 'is - Soon...',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_activated_body',
+  'value' => 'is - Your account was activated, and there was much rejoicing.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_activated_subject',
+  'value' => 'is - Your account is approved!',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_blocked_body',
+  'value' => 'is - You no longer please the robot overlords. Go to your room and chill out.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_blocked_subject',
+  'value' => 'is - BEGONE!',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_canceled_body',
+  'value' => 'is - The gates of Drupal are closed to you. Now you will work in the salt mines.',
+  'serialized' => '0',
+))
+->values(array(
+  'realm' => 'language',
+  'realm_key' => 'is',
+  'name' => 'user_mail_status_canceled_subject',
+  'value' => 'is - So long, bub',
+  'serialized' => '0',
+))
+->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' => '64',
+      'default' => '',
+    ),
+    'message' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'variables' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'severity' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'link' => array(
+      'type' => 'varchar',
+      'not null' => FALSE,
+      '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',
+));
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/MultilingualReviewPageTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/MultilingualReviewPageTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..03a729584db073fef16b371338b65752ea13d256
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/MultilingualReviewPageTest.php
@@ -0,0 +1,146 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d6;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\MultilingualReviewPageTestBase;
+
+// cspell:ignore multigroup nodeaccess
+
+/**
+ * Tests migrate upgrade review page for Drupal 6 for the aggregator module.
+ *
+ * Tests with translation modules enabled.
+ *
+ * @group aggregator
+ */
+class MultilingualReviewPageTest extends MultilingualReviewPageTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+    'content_translation',
+    'config_translation',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+    $this->loadFixture($this->getModulePath('migrate_drupal') . '/tests/fixtures/drupal6.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block',
+      'Block translation',
+      'Blog',
+      'Blog API',
+      'CCK translation',
+      'Calendar Signup',
+      'Color',
+      'Comment',
+      'Contact',
+      'Content',
+      'Content Copy',
+      'Content Multigroup',
+      'Content Permissions',
+      'Content translation',
+      'Content type translation',
+      'Database logging',
+      'Date',
+      'Date API',
+      'Date Locale',
+      'Date PHP4',
+      'Date Picker',
+      'Date Popup',
+      'Date Repeat API',
+      'Date Timezone',
+      'Date Tools',
+      'Dynamic display block',
+      'Email',
+      'Event',
+      'Fieldgroup',
+      'FileField',
+      'FileField Meta',
+      'Filter',
+      'Help',
+      'ImageAPI',
+      'ImageAPI GD2',
+      'ImageAPI ImageMagick',
+      'ImageCache',
+      'ImageCache UI',
+      'ImageField',
+      'Internationalization',
+      'Link',
+      'Locale',
+      'Menu',
+      'Menu',
+      'Menu translation',
+      'Node Reference',
+      'Nodeaccess',
+      'Number',
+      'OpenID',
+      'Option Widgets',
+      'PHP filter',
+      'Path',
+      'Phone - CCK',
+      'Ping',
+      'Poll',
+      'Poll aggregate',
+      'Profile',
+      'Profile translation',
+      'Search',
+      'String translation',
+      'Synchronize translations',
+      'System',
+      'Taxonomy',
+      'Taxonomy translation',
+      'Text',
+      'Throttle',
+      'Tracker',
+      'Trigger',
+      'Upload',
+      'User',
+      'User Reference',
+      'Variable API',
+      'Variable admin',
+      'Views UI',
+      'Views exporter',
+      'jQuery UI',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [
+      'Book',
+      'Devel',
+      'Devel generate',
+      'Devel node access',
+      'Forum',
+      'Statistics',
+      'Syslog',
+      'Update status',
+      'Views',
+      'Views translation',
+      'migrate_status_active_test',
+    ];
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/NoMultilingualReviewPageTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/NoMultilingualReviewPageTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..da66c21ff8d427d16937e4851349867e58e1f718
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/NoMultilingualReviewPageTest.php
@@ -0,0 +1,151 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d6;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
+
+// cspell:ignore multigroup nodeaccess
+
+/**
+ * Tests migrate upgrade review page for Drupal 6  for the aggregator module.
+ *
+ * Tests with the translation modules disabled.
+ *
+ * @group aggregator
+ */
+class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+    $this->loadFixture($this->getModulePath('migrate_drupal') . '/tests/fixtures/drupal6.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block',
+      'Blog',
+      'Blog API',
+      'Calendar Signup',
+      'Color',
+      'Comment',
+      'Contact',
+      'Content',
+      'Content Copy',
+      'Content Multigroup',
+      'Content Permissions',
+      'Content translation',
+      'Database logging',
+      'Date',
+      'Date API',
+      'Date Locale',
+      'Date PHP4',
+      'Date Picker',
+      'Date Popup',
+      'Date Repeat API',
+      'Date Timezone',
+      'Date Tools',
+      'Dynamic display block',
+      'Email',
+      'Event',
+      'Fieldgroup',
+      'FileField',
+      'FileField Meta',
+      'Filter',
+      'Help',
+      'ImageAPI',
+      'ImageAPI GD2',
+      'ImageAPI ImageMagick',
+      'ImageCache',
+      'ImageCache UI',
+      'ImageField',
+      'Link',
+      'Menu',
+      'Node',
+      'Nodeaccess',
+      'Node Reference',
+      'Number',
+      'OpenID',
+      'Option Widgets',
+      'PHP filter',
+      'Path',
+      'Phone - CCK',
+      'Ping',
+      'Poll',
+      'Profile',
+      'Search',
+      'System',
+      'Taxonomy',
+      'Text',
+      'Throttle',
+      'Tracker',
+      'Trigger',
+      'Upload',
+      'User',
+      'User Reference',
+      'Variable API',
+      'Variable admin',
+      'Views UI',
+      'Views exporter',
+      'jQuery UI',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getIncompletePaths() {
+    return [];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [
+      'Block translation',
+      'Book',
+      'CCK translation',
+      'Content type translation',
+      'Devel',
+      'Devel generate',
+      'Devel node access',
+      'Forum',
+      'Internationalization',
+      'Locale',
+      'Menu translation',
+      'migrate_status_active_test',
+      'Poll aggregate',
+      'Profile translation',
+      'Statistics',
+      'String translation',
+      'Synchronize translations',
+      'Syslog',
+      'Taxonomy translation',
+      'Update status',
+      'Views',
+      'Views translation',
+    ];
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/UpgradeTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/UpgradeTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..6b2569745731854f9e03fbb3ff774bb022c5e6fb
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/UpgradeTest.php
@@ -0,0 +1,195 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d6;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;
+use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeTestBase;
+
+/**
+ * Tests Drupal 6 upgrade using the migrate UI.
+ *
+ * The test method is provided by the MigrateUpgradeTestBase class.
+ *
+ * @group aggregator
+ */
+class UpgradeTest extends MigrateUpgradeExecuteTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+    'book',
+    'config_translation',
+    'content_translation',
+    'datetime_range',
+    'forum',
+    'language',
+    'migrate_drupal_ui',
+    'statistics',
+    'telephone',
+    'update',
+  ];
+
+  /**
+   * The entity storage for node.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    MigrateUpgradeTestBase::setUp();
+    $this->loadFixture($this->getModulePath('aggregator') . '/tests/fixtures/drupal6.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getEntityCounts() {
+    return [
+      'aggregator_item' => 1,
+      'aggregator_feed' => 1,
+      'block' => 34,
+      'block_content' => 2,
+      'block_content_type' => 1,
+      'comment' => 8,
+      // The 'standard' profile provides the 'comment' comment type, and the
+      // migration creates 12 comment types, one per node type.
+      'comment_type' => 14,
+      'contact_form' => 5,
+      'contact_message' => 0,
+      'configurable_language' => 5,
+      'editor' => 2,
+      'field_config' => 103,
+      'field_storage_config' => 71,
+      'file' => 6,
+      'filter_format' => 7,
+      'image_style' => 6,
+      'language_content_settings' => 15,
+      'node' => 18,
+      // The 'book' module provides the 'book' node type, and the migration
+      // creates 12 node types.
+      'node_type' => 14,
+      'rdf_mapping' => 7,
+      'search_page' => 2,
+      'shortcut' => 2,
+      'shortcut_set' => 1,
+      'action' => 27,
+      'menu' => 8,
+      'path_alias' => 8,
+      'taxonomy_term' => 15,
+      'taxonomy_vocabulary' => 7,
+      'tour' => 6,
+      'user' => 7,
+      'user_role' => 7,
+      'menu_link_content' => 9,
+      'view' => 16,
+      'date_format' => 11,
+      'entity_form_display' => 31,
+      'entity_form_mode' => 1,
+      'entity_view_display' => 61,
+      'entity_view_mode' => 14,
+      'base_field_override' => 41,
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getEntityCountsIncremental() {
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block',
+      'Block translation',
+      'Book',
+      'CCK translation',
+      'Comment',
+      'Contact',
+      'Content',
+      'Content translation',
+      'Content type translation',
+      'Date',
+      'Email',
+      'FileField',
+      'Filter',
+      'Forum',
+      'ImageCache',
+      'ImageField',
+      'Internationalization',
+      'Locale',
+      'Menu',
+      'Menu translation',
+      'Node',
+      'Node Reference',
+      'Option Widgets',
+      'Path',
+      'Profile translation',
+      'Search',
+      'Statistics',
+      'String translation',
+      'Synchronize translations',
+      'System',
+      'Taxonomy',
+      'Taxonomy translation',
+      'Text',
+      'Update status',
+      'Upload',
+      'User',
+      'User Reference',
+      // Include modules that do not have an upgrade path and are enabled in the
+      // source database'.
+      'Date API',
+      'Date Timezone',
+      'Event',
+      'ImageAPI',
+      'Number',
+      'PHP filter',
+      'Profile',
+      'Variable admin',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [];
+  }
+
+  /**
+   * Executes an 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->useTestMailCollector();
+    $this->submitForm([], 'Perform upgrade');
+    $this->assertUpgrade($this->getEntityCounts());
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/html-1.txt b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/html-1.txt
new file mode 100644
index 0000000000000000000000000000000000000000..494470d17178bde3a388e0c2e74cf008c73f128e
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/html-1.txt
@@ -0,0 +1 @@
+<h1>SimpleTest HTML</h1>
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-1.png b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-1.png
new file mode 100644
index 0000000000000000000000000000000000000000..09e64d6edbc2440d585bbf463c727f51f9b294b7
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-1.png
@@ -0,0 +1,179 @@
+‰PNG
+
+���
IHDR��h���ð����Ì¡“��™dIDATx^d¼÷¯eו&ö}kï{ß»ïUb%†*†¢˜%RE…VËê–
ØîqÃØ°
þaÜ°ÝðŸäßø§f<îi³[j©[‘-±EŠÅTÌXéUxéÞ{öú{­³ªnØw‡¾wñ¯ÿù\�@$ ��HD�$HB"…>dz P�1=bÿæ> rr€„”(˜*Ö'!Ðã�(> ’±m9c¿
¿ÿ¿ÍæB1Ša�4­ˁÂôô%-Þ)–èCˆ¤TÎÔ'% b·Ú}gãÔ¥X)p9òpÍ¡ÁÍ3+ÅÜa I7
+÷§¤»9"ÏepS3‹S$%À—h„‹‹Qy„Rš»Ëa¡s¯$Iyca“€³Uªah¢™ZsÔ*+h¹�ÈÝ¥äj°`‹K.I�Õ@—DP åF¥„H„ôRŒqŽ¶v¨1Ž4#P&BËE5™Qßæ+ÿ̓A
0ALJº`æ°g‰àä)\€ÅÇ’ÅaBìã;0Mð|+`QS
+¡Â ÈQJs9EÒPÌA„$ä"ÅY¥€$TH0%3¹SJ‘Pè ɤµŒr‡—RZ<E”pp&ßÚAZ…C€š2cÌoqâ.éИ2ÿûŠRAÆá.¥¼“´Rà–¿Uh¸—	]–Ž©)¹6H“d ¨Îì)"Â(9O—�5yj£ÁQ‘h�ÌJ¡QÂ&òü)$—@L*‰“D—¼A‚¤IÐ$ùc.3¢„Z“Ü}„BÖb”Ñ$L�s*Ï!0ø]$Ýi YÐ� (M)ˆ`¾•‚0Ò	ˆ`’æ’r`FJìsº	JYE¨¯ÁG.dC))AAZ–jwÊZ…Ë̤òJ$¾‘¡×A’»‚­p‰Tè`þÀRc133‚.÷æt'á0ÒŒe
+YJ´nŠC:âh…jNÔ”M²B4’Dˆˆ…î#Ÿ$OZHDV0J(œBÃ(1t{|è©NÊu\
+
�ãgr H£y<ñ%A®˜A„SòR¨æ h0ys	–°6y#�5%.'_Óº+45&悲
+š	îî-A­ÐH#]‰\1¥�°yЂbT1€Å`H‹or™!Ví>p›Q›$œ4ˆo<G†Í‹õÉ8<¨n•ì­U-•)‰±nôA
¥dÐ$°˜8£\ò•&ðcr’Rƒ‰/€£?F
+…’¸Ýr—ƒ,¦b$û
+ (yùMµ µV+僠
+¦f+‰&9€‡­Ë)Ò:.䤈Áà‹;MrH&Ñä´$3aÐHF€0ÀAK©CÎ)ŒF^µ´0мҕR:ØQîaH†† &™@ÌœSÓã€KÊSBN3X“	B׃#¤6PÍ%ƒPEšQLÀŒµáBÀH)M:\4†¨:UR¢»9J Ƈ¥+¹9;y cp†€ÇÎå¹hhf°4£wÔadpR4È;î
+<À؝Ba“UŠ¤\’³pN"Ÿp°Ì¤Á›T‚ëdl5ùp¹=&BHq&43£$8pPTô'1ÁbòËPÉ juVÚ¡£°Žf �'ݍr&ØHżI`á“E"
2HZ‰’œfˆ9a�u7Ðò­{h6+½UŠÅE.Ö™êa†UBCJD¥9!
‚s:~öàˆÓ9Ho3Ab)¦ÑŸk‚Ò(4,<"ƒäkñmŒ,h(’F0p?i_Qék¸*ҏ¢�1Ü"vcr‹¤#M³	eEô³C`¬aEDâ�õIb¸%š`$G«(Âø�4¸
+ ÿ*¥Z¢!�¢š·æ¡ÆÜ͈ –»CŠ(±ÚH¼’4“af¢(¹¼ÅF3ZâÄÊá…)u@¼°ƒ¤ jÍÃÕ!›¹×n0‘ا’cœI*ÇIt)ŽDò0ƒ¤Dƒ{Z£�µnÅUª;PÕR¤¡u3cdˆŽ¬¬j^Šc£AÒÌLƒ(9@X[
:î FÒH¹»»B3¤N'ŽkHãQ‰
+pŦx�8Iq²	I…€;áUÊD-ÅBÌrâ„ÍA	ÜRk,V
ä+ñ�{RAÞÏšŒ7�éa²‚Æô4-•¾˜dFoä”)t¨tâl{±Ú[zÕà6Úl†aï€DDsb(
"!Ô=ÅJ”j`â8âñø}ÂP�†Çþº¥UíHJ3¤æ‹?y÷#w4´38ˆIµÝ&’“¾8¾w/|"R.Bs{’W¸,Äv¾14¾ÁWþÅýŒf ëèP¸Hc>¥‘~ÈÀ‚ðëè@)t€d,ÀbIo(t7Ãb¾>\º™j}805rÑÛf(*f2ºJP1hL(¢/ÀècDuKä„ÊÀŒƒ¸\h %Ëó{\j'ÿhçÕU1Š…M+ϹÐÄäSPB¦êó¯œøõ=Ù	ÿèüV+®&KŸÖè¿«˜B>À…xD‚B£ŠxŒYz®pæP8ir4�L^Y12s…@߯UjÍEI šˆa(ŸÛ¾´4%Ü#X¨›¸2Ô­FœÖcd<LÚÐVó¢0ÍâVS
QvwÑ…®“ß·ÛæV¬k+(j.Œ'c¬BÐ�[}òäS¿f¦ß’§ÀŒÍ0lÞwþì½÷®2YÎ	HrfÌÕé­Ü¬¨cHט ’hL6O9AÏx+¥ÂÜ�¡P1Ü`Eƒ4"¤Çó@2æ_ÞûÄ̝P0»åyNi+æ²ñä¶L3‚*åèâzØ7x‘Ê š¹Î|ÿÈ?Ô…Å FºbC·W„š5	ºõÑÓ¯lÄ(B¼;cÏ=]ÿîAîƒqdÁHÀ�»é ¥Ï éL
dtR^ \„œB<Á’陕ˆ7ÉÖ\­h¦¡¬jÊ8äre~u‚ÉÉ)„Ô¥
+Tr?
sžzæ—×„`8»`bÕelà‰?~à§WëÑÞÈå€\&€Æ¸±š
+W¯Ÿúڍ%g!WB¬îl§¾õ¥k¿úôð)R%Z$Ñ}HuŒèá‡@‹ñ!ú*p¥)
©rr8àî(&ƒ�4“4"šrešC0¬lHTC…FŠ®ÜŽMÙÊF儤	ÖXÚÝ#î8 ±­¾ùùëw’^0ÿÆ¿xÏÛlˆyÒŸa	:dXL—d$)?õå›ïêlï—þõß�US–Ô°xñÉß¼vK¬K•u@µKTò=C.‘£YÀ(ÕLõô`œ$Ñ‚žÜ!5i­•�§äOΓId¸,8썭‹Ù’2…'M’‰e’³eåÁG c™|WZtœ�Ìï®N!v†vv‡Ú˜c«îüâoßZ?(†ê MÁMNK	&X¸€³G—Puoöù›Ï^ýôÐR`�ز<ñÖߊ«Y…˜-ขeŠÕSžM©FtP·Ü˜qG†b!àÆ ¥è�=¤PJ&�ù
+è¬ø¹h†Æõ¶J”¤”YëFÀÓšŒ‘º&œs‚¡ª€ÚrÁˆúÅáŽg^ÆŠÏýñ•×ÔD‰h.=ro‡ƒA-Gt¸5¶âµî­[àå.\¿çROª—²†ï¼ºšÁA_G@» ÚÜ=)’ú™ñ)ŒOFÛ¯¤ KC4¥…‡A´�Ô$F@Èé\J¯=ÈEÃzím0®)ššÔ¢Øj0A°KéÛAÌ%Ñ<iëÝ#£dÑÖò<—øÆ-~s#4À¾vpô¥_Ý2`)Ó;i™‹»­ös�ÀÞÅçî¿ë=ã/Wƒ®íœ¸Üæ‚—âøÃkE©½®*…̽{Ä-IÆü¥ †¡ €žlwR=zïN€Fë&u&B€( oHr+@+P‚_ðWä0óUñ·+y²xrîbºa}c¡u	³´1#'TŸ~öWïzPŸZÝ<}ßb‹Ë†b¹@B[
+ðX»4¨¨¹�¼~þÄ#—ö(€RØî‡Ïm¾¿,ÄЪ"])˜´IS FHAJŽç¢¥…£šaa„Àä‚œô½p¥@™’ÒA®2:¥)‡¸¨tĈ“Ç]{˜ù ¡k_Ò؁y4ºW6îÆôÒbm$˜ÃO}óðËŒ6lž9xéQ}úþ—(Äck/UlÇž½õ©¸¨£gY×{wþ`O]"CÕwí[_zãÒÊÝ›  ë9*$ ûdt2æÝbt"¡E Í/¤HxÒ®³fÔSQ“ˆàÒRcŠ÷ƒ‚Ö|³8Ô�‰…ÊÜPüìó}œ¶%‘€'™%’­Íª7‘b·ðËű[tÀÉa>¦BSöð¹_^›·L¸ú¿ùàbxíÍ
ïN5h›Ïœ¹xUÎÍc‡›ûe{î`¢Óêê§?m�B¯"áåW~ð寞{ûŠY}D¨¨s"k !…&E3öÐ+%^džõ¡@mSõž™"šÓòǽ^	Yr—�;fá¦I\nÌg<x¶|þÉ
®D±h+?þï¼üo?Î	¤	0ÐLæ~âÅã >ÿÝ’,"\oß÷iÄ?äFa/þ´ãíþ«Ñ3<òâ—ÞúÁCïhå˜+»gÿì‹cß\\¼¾‚án«Íç'f-Ãmo«K»gÙ8‘dP½÷ï¼ðòOwJpˬ 
+oé
ÈÛ-rNþ3Sæ6 L$¦ÂKpDzÅ=«Ï0—ÁF³Ú“%)µp=y˜4¾bY­¶žœ}¸sÿó~y5½8¿ÿß»ñûÖ©kÞ‹ÕâOZÕÖš=ùôõ×yúçþn¿–f^UWàöI¹Ì\î±jìËNžúøvñÔ懞Ú•K°\^ÐÀïÝ?»÷§ú›ÝzvïÀðÕºnë ÑB³á΍#›‡ž¢“9SéæÏ¿yî†GlÔý9Ö¤J%b¸µ^úFk";H‹@A§S²0,Â$8½ã{øœb¨ž	B®IÐ-üé§??Ðo~ûåºÃDÛúê‰ýåùç_?>/tÐ]±5fê2ÓìéG~óÑ\~mÿXþcD µÍ|µ7³Šqg6_§%ÊÉÍK
±ÏúÀËW_ý#Ù¢
D½øžýø¹·ÿî`öå§|HÛØœyÝZ
E§ac8¼uî¾»Žžù@“[Õã3†xºX;Řœ„éå`Àhðì°qôö‡*Æ�go±$koÚ!|*4aló’z £Ø¶W¿Ù«j·þý—ÿ¶¡ò$þïsÃWïýþÙ³b	ˆ4ƒC#ï8X=ùлWŽ ÙæüØ·n¾Wê0ǶaÕnßwô¬Ìüêα2XnH³ƒÛrsбmlsÉùà%ŽG¬žxéÚ¾¼ºgG¿¼9ˆó²nÃÆæÝ=•pæÖÅw6¤G]Zií¾'ÿGÌDŸÊ×D³”s(Ã:=”™QòÒ]'*i-Œí&+ÆG
+@'\S2MÕ8ܽx³¸ÃvÞø~X*ÐxöÍ»N_xÿòC/Þw»„2lק­ëƒ›W›­Míî­åu×zîO<pÍ·8sroëñÅj±:|øè`R–˜¶84XD7µžÞ~ø±º{Ð*(—?ýòÇ—*oBO»Ó¼6®7ugU-Šu}›6£u4¬pÿ]xëb2÷‡¨°"'Lj¶`òJ&Ç9hañ6'… ÒàLìi*¤%e®I¢!’Iƒ“&P.Ï<+…û·ïn¢4c»¹¾pu>”õã흭O–ßï9ö£æaÆBÈRál˜?PlÛ6›ÏÖ_hß4³cO¾ó‘¶}áô|ïû|u={ä{³û÷)A’«Îl…:AhõÁgO=û­/-®7C¡Ã7¾ñâð/O.ŽrX~ó‰[ÇèûÛ³gŽ\½:¿wÈâµÐ4k<ÔfáP$bÌû/Û×ÿÝ“¯½ºWä#`E[TK‚gË	µZRt,ü_š©z–då‚ÉMÁ%+n�™ÓÎb$¤8A	.FòÝedLs/îÆpýUµ¾'¬Õà7úÐ1l>ý³ÕƉ?Ö½c·ï|ùãY•	ÄÃlEYišÍ«qãÀ�ÚpxÂ6…úÈüÆö²}°ñ>>ø_íl¾vý¿>¶œ	Fª²xÛÜ(3Ï4ÊÝË7þÕ¿ÿäüÑÛKÀ¬ÍNþòºn}øØÕóþå…oùÆKvúÍ|öÎÿgu¾ý«÷—­,Ëp°:ƒÆF9	˜·ÂG¾óÜG?øp5#c’R4иœ²PEcË¡»d`&ÇƼ¡1èY@“S^@î	¸Ì>#—3å•Gtðir¹@\FïU'6ˆ¡n©nlȾâ;Û>þ†Žbý¥­Ö@	k—¯-\=Ñ©›ÏnÍ@
'Oηn5ìc߬~öé—®Öû×À±ÛŸœg·"ßv¶O”6÷ „yb¸~ïæ‰ÝnÞð&Íf»»q¿¾üùÿ¼ûü±ÝíüÙ­;2â_ýÖüvý-�±pVŒ¡Âm±Ú~æ;õïs‡óÑ'A¨,B¯É»µ#Q,LB0Irôba$o-&ňޘ*Lila&F×@‚™z3„?pÔ	Í0Ûº6«ë/ý£]k;uÇ}wç«Gî˜Ül€Ì K¸µË?uï€hÇ¿vãì#7ÉáÚ‰ózk«zîÎO¿zæ³;«Õûœ‰ÖÁ‡Ûûÿ~PV„ýÈÖº.w¯](,tm¿sskÿø©×ß·UÖ?çY?q¬lí_zWWßüîÏ
,‹zˆ¥´Xžzñ™õ«¯Ã(œL*I°Ñ#ìU
+t¥#1y!L®Á9g&Uì…“DwØh
LioïAgÌ�‰¶Ê
+ áäê‹"½ðØ«2?À=q¸Q.üzÞ
+È¡4Wõ€i3]ûÝßyg§¾tð£váM‡ßüøËç.~êøøÆÞ݃G¿|¸³·Ú9sow§Ñl÷ê³Þ™5‚´¶\nàîñ.ß
+à(;»KÕ5ßXÕ•N\3¬Y6.ÿè678?œ¹L€s[›Â$xù¹›¿øt"½:Ò(°‚ì	�Lûl‚”2
+¨ íí8	8bƒ0Zƒ`L|†B=œENŽsiLó	‘–µÁÔŠ¨>ú‘¬q±¼¼¬eŸÃšþùácoø¬ÿÚy[¯¦ùޏW”è(ëko?úg{»{7?Û»üÔ¹KõÈþ7/üÉîrýù{ËÙ¥«ÛÛgžZÞº3pˆÃp÷­s/¾7Ìå±ÍÓGþìÌ#÷ø:p¯GŽ\©û¾òîÝEÛZ_;8wim{7çëÝ]·*puf{鲍‚
+wÐðÔóW~Éé&+¡ñ"F”VSô’ µLo¢ wµÞ�ë¹eÂLáÊÌ¥U9&{ÿ¾QÁe‡$z~Ž¦"ÝE5­–kêÆÑS¯ÎÛF9Üá¬ÝÞ×lÛoÝ{쁛óÁ?»®­Z7*æ·×Í\ª¾Tûð“£X
�Þ}êù[ò¢½×/Î7Ö÷f´æ˽/þiæf%›Ç
+o¼ñ'ßý‡eu‚´Çùù³Ÿ½c¯Ý¨æ‚kóî²ìþì&P÷ÞØ.Cû[®lp³_µÓÖ Îpw(&8,g–¿ºLUÓ|+£2Á ¾ò/HÆ;#ܧâ'„žÇƒ1ëw$”_Å»ü„,ÖT )hm1¬#F/†\ò8u¿GRÀá»_û߯›ù…ïÞùð÷fëÅ_àls/O|º?÷õŸ~çß¼iMÊ@DªáIΟ¾xp°”¬Ò{s‡ TY¶úÝoÿíkÄÜ÷64=v°¤ ùùÿê§?söVW²A�Ãë¶úüé_Üìå—þê²×(@7¬þdû‡K“÷ª%&*oU”
+Ÿ®ÖB÷Hµ´zFkòûã0x‚ñ`ÁA€½…Äø©º¹UncŠD4ƒù¥µY±;×n~H4,/Þ\ÕÖ¿
o>¥A¦¬ë O‰O$‰KWB `žaÖ;bvøƹÞ$±ºÍ̱«J�òÍbó׫ ©ò[{cv´zty{°&ƒÓ]Ø]H2S¦ü¡¹Iõ!F⩾™bO“ì	³3ÒÔâu6ö–Ë sfZìÖL]’SÉ(/åÃïз~ÔVm¬þþ`%ÈÄF–/^¹:È©mªï,>ë2	J.€)Lis¨»ÿç·_Z½¿P V„lPl(€0~xð‰(«C“¸yôv«zDj¾sîþÏ-;n»‘"E¤×áééy;­£Ê”�"”"ÙYÑve阓º›„NÁÌ$Ó<)
+>Øe37s­è‹ÝRnsFU7sƒù‡¦–ÌD§‚uÙ£w·r’‡Tà´Ç;?{éëo¢k £¡†]ñ¶˜·ÃÚЧÐt—&3b˜<ú©ˆ±…ßü杧w÷!uá‘€î
WHû·Y¢KPf€FLæBÏOH’)5­kˆzé_A_HÔµ`Nc¨@¡ÑÍg¾
`s�á­zm¢.£:[CS(:¥ÝâM¯´æ·²¬‡±_Ïï½vì;w?"…* ˜<æ¨V­6m¼ú­üÈÖÞzê0?üøÛ/üêÀàSù4¹þ?c˜›Ìz}—h’œÈŠ"9ˆŽýîcáÞn‘_ê*«ê… ¼§ùh9ÉÜ]¤£¶1XÖ¤¤ÚdN/>"™Ô}#LŒ·ƒ¹@’ÓÖÀŽQ”™¿pé*{ŽQù“‡žyç³Ñ³W7;ÖFå5a½ñ½/ýèã’=ë`}çÊOZ6BŠx±aéïý¿Ý¤’0=#
 
ý¡É5UÀÜnA¿d;‰4Gô4Ï–ú©uĤbY]4Nh3•¸@:O;»ÝbÝ)êìËåc>Þµ"ùTkV6ÐdEÇrK¡æ
+
+d`]Œ%Z@æ´¦ìô÷ì﯃F1†åý~ë¯Æl±Ë$3p^–‡zŸ¯üwç;â):³ð)%S|“Òé™ê1ÊWnÓÅØZò?)“>ât¤Øa ë·Åâ}/É,¡?SY§{‚ÿÄ„¨Ž	Ø1ñdi ŸøI“SÉ	¸%¡{LË¥!ç¾·ÿ“»€ÀÀ/s¯8÷òO¯
´qŒ�šw½[;D‚–{A¢)‚¼vÊ\š(oiÀ˜‡qYž¦„MbM4&»&@ñºÍI¨Mb|@:{ÔWeÐÉæN=U‚§¢à˜Æ$E”œ—$dš‘}–|çÍOÚÔ¿>%ˆQ½_ì‹csÓÀO®ºÏš&¼r¹ùdZ™g$j�3бB­ïÅ©Q®™ÒÄé
+øÈ+ÐœÖ	™§±ÞÞžLïÁ	¯â5 Nô‚ƒÌU$v8JÂkR¶ü¶È'£#$e LJ
£:ŒÇI;vA„ÆÅî]¾S„™usÒ±_ƒŠyò:MS§Ât³�óÐ,{QJÒÔ¿äŠ7¢Éö'ÏÇ)g'žÜ uà :°øôVI¨	£hdC§UÿNétpÊR†EÂd…º››QWG^Lj%Ð0q˜]¥&uçͶ–žíãÅ­ÑMhŠ#‘(Á8‚¯üåÃÓeU#ڐqgz<†æ!÷eO¾É#“ìy?€fÈNÚ”>0
’å“£#	,¨FMÙ I…ÎŽShœ
^à‘•‹¦sQɬ™C$(΂•&sA²ž‰LhPn}d¼+ùÖ±%ÃC‹í÷kΚÅRžS)c^Pâü›¿|JÖF¿ÈAÆh”Ö„8‡Ü	TQÒË’\fdÇ¿ØR*aG
+ôÈý0‰Ñ‰¢ÈO§øRpóN²ƒ2VŠ$¨0ñ%‘ÃVV`\Ò#<ꊑ«Š…,q¨ÛË^‘VJƈéæ°;ÙU*õ]="”²-R±R—6¼_ÕÖPÚvÒèÙ
£Õâ11Rû˜Ð
+rňŒ­™†3Hpˆj`÷ùB«º–jR]É
+6›4M˜ÚåY‹—‘Nê&6fªæXÌï²®H¢yC»ÃKiG×»¶‚dTc'KOkD¿ä)¸Ü'hI¬›hN¢O=òŠ	)å— Y“ô÷˜žHÍ¦m‘43‚Êàªw¨“VŒHWÕ»ÊM{ÊÄ_/t%d3¥¾û“)•‰²ôîè	baÌYé¦Ê`=8Ñ­<zâÛ¡›‡ï/MY§`Ì3üKv¼`’Õ)”DI¢š„ÉnH®&Ñ­?9*lì˜õ¤’Ё9$„q&Ñ\™r䚤“ YM
ê)4™BÐ(M
+ŒÉqå$#¨®)1’i¯TR1&	¢ž‚ï8ÝûQöb›'Hƒ÷…º·á'Ný¢¤ŠÎ<~‡…ï�hïð)?Eò7Ù*ßÅD–ðÓWQYfÁQBÌt¨¥¡‰].’
4Z:Ò’eb‹ikšŒ½V X˼“à~¶Õ c³ŒEE”í“u`ÉÙpúÉ3Ÿœ|õîÌQ䉖t1mM]ÏEë‚6ÉÀ½§7טzRãûþ—þÀv*°¸|)¥uaŽ)Û;ºÓšÉ«ä.™¥ÑŽ9’Y£IÐM&ZŸðd9I2D²hêIJIp—¦ôk×*NÁ#A1†0)’Ú@¹àæñs÷2<ùÈÞÞ'§êª(É–³SŸ¹öÞZjµÙF•yòQ2‡Š/–ø짯º0H–	rwÕÖªû˜ÎiÛÙ'ÄË4LlžG÷´)²°
+o„DQä\{êsp“Ìï³x”ùtÉ8îÝV)$guƇì”îᯔ‹Aî¡àTnÆ
§¿ý¯7_ÂÑÓKΡÙpö±#w/Þ:`cmóÍå>楄Ö0ô˜µ¡¸*™µç/î<~Õ‚hŠ¤ÒºŒ„h(Lõð {öI¹Ñn(%4lS¾DqÅà¤kªT§¥0Fz‹(ÉOa±LóÑâ$£=èmIÀQ$ÙÛ„IrÕÜIfx²ƒÜÒg6ÐafÖ’˜IýÇ[-[›®¦2œºpû½]Tøâ€?BûäT™¸î•(„›,vå•þÚaIó9wTo¦Ò`Êz=,Ù³Ü4Æi
+ê2„pxšœü§÷oLmöH¶ÄŒÉGˆÈq’H‚(`1ÈZ ©÷‚K•A݃îÖHá%;v‹#¨9è„'ŵÛñÜ ÐA]Z¾ö¹{ۛ̚AíØ—?/U(ZÍÏ]øìÒÙ®­«3ötœ¾qúîÝ<#TÞ/¹ikÐ`>k«Dd0ˆÑ&£NΝ4Ýh%£žCÇídMc˜OÞʪyÚ^‰5°÷ñ§3nò¡5ʃŸ2pš˜�̽£N|”¡Û&ác¿.©·~d
‰ô-9¥Ô¦8™Vv~={ÚÎ,V¥8ˆÅ齝ˆ…뱧ÞûL—n¬«ãLõÔÑ“³ºñ››5ñOÞàS]4–Oì|âKï�•Ç&D¦±#靌¢Q ÑaÆ© ‹v4I1WâÕÑÁÙÈK½Ó•«B²˜Z¬ …<'É@Ô;ë'ç–ؐsñÚdÏ|’œ:Ô94I ÒŠÏönœþìü“_\‘Q¶ûñç®]=h”Ÿß½ìõ©[_˜ Á@º“ÐìÌn^_Þ1¹xàE8°xîÜPL÷í¾×Vnˏ÷ÂÂÉ…Úre˜ zV“e
t®f’M¸6ÊKì¶çãÄ1þ©ðaºßC¸ÉQŠH·RÌ£ƒ«9hÁ^´‘Æ”w)ëÌò\({ã%ļàBF#aݍñÞ.@	Ì$.¬Þ6«iûà­GŽ>÷èwh­½{å¡óO}úÁ^Y?öóe{ô»?¹J‡7/J\Úûñ.JÙÚ03*• ]<|÷ãV6ÊãÛwîÛ(<Ø\ËV³—
`,Dw6¸‘Ëjƒûlí3Bi_Ô|îPÔFàÑœ.Ÿ
+.£ÅӐÈKÒf4Hn—X’bèˆ!4õœ²ÃC AxóðÇ
FšÑ,¨àÙÑJGñÁÔ›=Ùéžäoëê«ÛøÑ÷Ÿý§aM”»7ß9þüòî›»Gn¶¿W?;ÄÊ[•‰À~ãA
+æ«;W>^öüvª^ÛÝ]Ã}þë“(n6Gyf®#ËyTlÊŒk›m½ÙÊf[³˜cX9,pYþÇ
\/‹5S?2	®
+*M]º-Ä ÿsp§9HKî1\¹ô8Ýy5fhFIŒ)Ü¡ÑÚfu,ÀÓ]##¹ã™pî5™)†˜:2``eÁþ3¿úÜlw^ÖCÝh7òЋü›k/|ð­ƒåÛÆ¢y6@ªÜ–V÷VÃrÿ ¡˜ÂIgÏyôÜ>†ªUÑÊ+·VbÛŒ¼)¶œ©Š[¾©•6A	:ýÀúÆî!{ùÌ[î4Áè)èaˆç®Yѐšî­UЄZ±ºIeþ¡G©nfå¢b³nÑ”Ý
dPÀÝ]Ža£ÀÉvÿa_¼kY}ÿø±#m½imfP1]ûñËßúùÓÏ߸ù2涜ÝcxÚò­ÖPH3Üç¤À@‡õ}*”sÁpöìÞÎŽbX©•V¨m\»Ôl(æ|ü™Ïî;úΐy-u®­-¿z�˜8šAšµ4zS…{F0F’ ¤¥ÞŽ„ŒVI
+\aw$»"âÏD‰–Y 1Wd¸ÕkVb	Îô<È”gÇ@LKo8Üݨ7Öß9÷æ …–úî­ówß.wžœÃµšŸ¸4º¨+”'fü¡s;î‡'ê’�Î~õâòу]eEüÉ‹’†òØ냁 ÁôøC¯üýæ3ÇlqdQÛÆVµÙêƁ
+	.—çõ^T¨…F“F"	
—Œð±ŽÂÑ7³ñŠlY¼ÈMKM$­˜`’bqæ8Iù&’SéQáO©9¤e1m—µ/ÿäV3Q¤ƒÏž}ú¢c]ïk¤n|B¯²‚ͺ:`Aÿ{h.£77n¼ôùïO=¼±ë€Yã±+ïëíç|óó"Çʈ“gÞøô¿Øzk½xüþ#3¿Çó·×|¹>\¯P"+¤Dª!Ò¤eVôüƒ`B.B,ýVŽ.·ÌÿJ0Ab…"v–ä‚4332`Æ!‚œ)b°’Ðœ‰^A=¼ux¿òi•aA#tgµ=ñÒùvk÷觬M€Èç|dxí­ECÝ6šv~Ù&‰(îÀ&2XŒ‘ÑIt׽óïT±ÓðÈÖÅa½òåƃ‡×EÜ9³"6¿}ÿß¼©R¸6¬Ïßúâ¿<ýÝÙá¥[í`ÿø?¿Øf„Ë#FìQZI;ÖTUa•ôÉ—’àÅÝ
+áiËÐ}@õD*³ç‰Þ\ K1•Ù)l€œ™E EÖ*ó›i,0EZ�ŠQºq„Pêžhúðã¡
g¾~ê6²qªœYýðÒ¡Õµ­©%©Cp%fËËèÏÍ“S	üßݽÿƒé+Ú⅝ÝͺØüÚçwZY_>úÜËzþ·ï»ÿÄ{ƒP‡³WþÓsÿË­EÃu/ïÌý½»4ÕÔÐs?”·&‹âl®ÙË¡ìf€äJ¿Ÿi—J�A’™f™›cIŒ§ÒsȉFö´€“â �ÅhÅØ#“Ëc
+@ l¨V¬Üùå@µÐƒ?€[]76XDÈšÁ”ºA¡”õBIjP7g{·ïœZÉJ:þ…ÈþÉÖuýñÓçßyè´½ôèÆë63­ëÆ™²õ××MÎ"©
‡ý®ßX™Š"R赺*­pªaªÓ>–µàb(p
-ÄKŒ«t¡ $[‚Y!L.¹äd¤U‘E\£Œùô¤{j³a=ïKèì¤h·ç*Ù
ç(3÷*E0d€ÉMN­iš1­(/›OlìœέWMµã5iÀÆàœ	’v?yòú3«­£—¯Üœ[‡{ï¿3_4£$ǽû7àS:6ô‹
Κ™_΀¾)È4UFkJ�2ÇF)F9å1åû«£ÀA‡Ð4Œá
+)£ÁJ%4ÝÍOÿ15`ªšKPaš_"¯AÛ™0À
+Š™sUlˆRemÊg÷fTj%æB
%Û¯§f·Ž«.woß=Ø9u¸Óp¨¹Û‘Æ×Ô•ígm9\º´6l,öZ«»ï}åk_Ü™Í7ö©5ýÚÃh´@Bö#IS¦õÂUþÍ_>:]�c~mÝ>}-ÆÖ]dìÙHX\4d¸9]Pöâ‚Š<f3¥ã`}DZ¦ b¿QK{ª~D7i‚irR05Ëð=\¦Õ×/ü¯eæB³ÔÁ3 ÊxH¦ÁÚÊæm¨5V85ÛßÞ°Ù±å‡/,ÿÉÁç·~yê?ÿ‡wݯ/>ý·_Ÿ½}iqü¬]¿|ÈçϾrêÑE)ýw@Ñ_üúÿv€©‰˜ñZJ5uÕïüUH4²Ð%8G�¦¨Ä4’…Q~àÈ6â@¹Q° S:
Ä@ÔÒˆ@,#²+0Í¡s’_!‘9ÿ•O—è‘fr	îD1‹™Ötµ›jhq^
+>ê3AVÙÔVÃzcfeð»>ìrhµ¶_™†‹_9óÔíK®Á<óÄÛwÿáì£Ïmîvéî�ìlܼ53 ©�´ae[»Tßsf!MéË-|à+ÿýÃ�‚NƒàŒ‡Ë78Ì@8,+T(ÉE]8$š
+³e[”Ãu5ÙxtÀH1ÀÉ4½d’˜Ì^T'§f{pÈÁ^cºl†ˆCåÇ¿òZk¥HÈɈ©æëŽBäË¥Ùà›FÂiMÖœFc3¬·üÖÏ?(äÑo?zçw­å>]k å³íÛFܳmúôù‹wI¤ÚÐ L6Gr}îÿâ+ÿí9€œrÛ=°‘ãOÌä„“V Wb@Š>äÆ)ÔFI€sXÙó³`›å|Y	N²b¼‘Ïq‡9¿§ÉU–ÂÖL­ìeÑÒ˧	D›ûс~½@BîVŽ݆jK,,¼FàÑ{;ø0_»¯‹{rëá½[‡ZÕVöçkÑà$3E—æ„¥_=ëbÎé.^ø«
+FïŽiä‘È8ìÌFƒ«0-f!‘:üv
+¶¶w÷Ðk[§U›[˜áÂ$4E99ÕrÒ”8
ùÐÆFr�0ÒÔ$šðÁ}hB´W³z,NõÒсÆYA	 ,TÃ佬¤F[³š¹¯.6TWu9Æ™gàÜÛ25ÛÖÔËÑIGÒJínÆ¥Öæ„TÀF@iö‹vï(áS®ér,D£–kÛ´{·÷–k+¾¿£Ræ‹Ùææemêý•[ïb†Ê71vt“Á�X
+­hX¶õÐ<ҁT%˜HP•NÅ%0:è¢\7„`aÞ/+fÞh3Ì€èJ
(µ¹ç=$ƒÁÉDø¸{öÀ.Xkb“Õ@‚ˆˆs;!kbfCƒéL�šˆç•\É=9‹ƒ¾Òz¯lÞñÛwgÛƒÔ†¥Ì[µííí­™z4ˆÀ‘UǼgâŽBg tk†B±ßrtg0w9ìÓŠ“€Øށg˜*—˜ÞrÐÝÓÄ¢¶c+EƒÄBãÌ	¹;„ÌÄcí!x!¥©ˆͲ–ÒÝdö›ÝæîhkTÈ]ÕGAFo7ãïÞÑ؇rZKïLcqMÔ¦á`plÕ›wÛbë`E•™™í7¬÷†{‹ó#ô"¦@ÊiGF¶bî‚3i&Q!¬LMuip˜Ü…öÐñ½ý¡@¥å%”<lï4cPR´œÐ{ËŒ­bh ×n’aæ«ZÃ#¦Cjîé%º$ÐÌà#$|	fT£1(ÑQ¡·˜p뀯üÅýƒ*‰üéN¥’b½:h’²h.²UfÕŒƒéÞ°(»ûåΝzduw¾Ø<JáÎ]Q‹aeX<^YØv-"ìWzLyýÜ°V§!ò6bo”„þlö¯šClt˜ç|JbŠ–1[Ô»ŠFÇŸ\ÎÉ#›·ì�Æ2Ö¾1„ëàHÙ“GÌ6�oÓµ’jcæ®ähh>³4N¹¶ú›
+ÐDºE²–;Lé ›¥Ë"zñ >™ šrÛ»]7ö®—MhË6ÎÏqòÝÛ3ÓºÍO/ÛÞÁµÅevOÜ1³0¢ú<¯¿º,jçO¢ðÉǯ{¡•µ ´ÞÜaÃc™^
+‘@ÀáUÛ/¿´ù×?ÛRƒ<”­àÝ-œ²»ff3åC½O°X–) ™F®s9T¸3úÖb˜Ø˜îZ¹zžÈÀ:òp˃ÚnÞÎñözóÄbéœÝØX5T›m¯µûælyrn]œÀa»Â ÕC³±ýRhdȃB©p´²ºùÈ “o|éÖ%dSŸDŽ'$¤&vhtséþÿà_ÛjÌ.<»ùùoöº«&!­/Ä”¸¤ÁiIÁàSÕ­ÇàÊye<ÙOdjÚj,˜¡¬˜›NâSW¼’ô¥|u¸¡ý¶¸ïøƦ¯7ÎVû­­Û}³­ÕÆÑcîKBòž:	W€ÌKõ¹Ë—0L%w�b	dÇhç,YÓæW?½!@…A£4¢F¡­dçT •4øCþ‚îüîW·‡ÅcÏ¿x¶]¸òöÉõA	/dÕ£A¡ùyË;•›iM±€ÀÌùÆ·&‡œ¬°šf(ÍæÔ®”šœf2	ZÅt•É›+8#Hðÿ§®ÿz¶,;ï±Ï¬µ÷>öÚ4•Y••åU a
	lÐbHÎô´&b¤)¤E蟘ÿB/zn=Í„’†­ö°›®A¢DeMú¼yý=nï½Öú>=ìeNC'ª2ï=yòÜ“k¯ý­ÏüŒÈZjd¹f{­ë`g×B Æ,BÐñìjæ/BȆ>dzo1ëYpð¶!r¯¿ôÿò¬ƒ*¨¤U¦„NPô]µû´6³1‹IžT#'ž!aash0êCóÛß|ëêøŸÿýƒ;ßzéîÍjå.ýo}ùÙŸœ™¤ÃS°¬€rL÷)N¦â~Ü*U5º$ýo5�T:Ïár$ÃŽ2››¶°N˜…ò
+ô.¬Û[“ÓÍΝ‹Eµ^4ÚìʫѤmŒkûÑëŸ=ÖfE5Êm¤7ͦ2¢ìY9MÄäLcVŠ‘zˆ15X	jK³)UO!ÖÚ°´ Z茋ðñ4­ÑÚ{žÿ·Ç«gþŸ®ÿwïÌ­ë¯N>úÛw¾¿·øðˆA)ÅÊ)#ukU⧉…!Âp ze?‰M%-¹LsNX˜P˜Qüé™Â·D`ì׫®Q-t±A
+³Q;ã
íj¥@|/]©æ‡W·ƒ1,J�ÆkgT!T"D!0c@d;®;R€Þ�lÏi%ui€0êŽY×¢ýª6’Yk‘%gTBãS‚aÖ¢èg¿óëõéÏÿîäÿÍùÎÅÕ郇Ñï}]»õUŠå¸.“»ô옽¯\¬+oE‘dhúÄ[#–’!”ØB…*Ès¼X &Û€Q…ò+hqÖè¥9Ú\Ž¦vÞÀCUÑL7«½—vw¼ÀÓîrÄ•'	<Ù¿\ „Ý;Ÿ/IÈ€2ªß ò„–04âDµæڍ«Ž$_MãyVϤ”µÝ#SÀÛ—¾÷ÕééÏ?yõîH»||Öñk¿r8[÷ë?ý‰bH†cújäžžPH(B(JTS
+‘(ª‚Ãq˜ÔŸ'ušrý°í)\¶z1zJ4Ý�3H>¨öˆÓí8dTõtýÍ[ÍÜT¯N¦U€Ñ›ÏŽ_yëúã¿_ƒá»¯à#B³·Z’õôW—ãZáéCÉ‚¦1uµ¤^U¢líîý˜•@Ú£y$ªé 
+R¸þbû¤E«zhöÒ»ÿúåúòçßxi¢«'ÚÛŸL¸¿|ôøÿÚï¡ZG1IHèþ	åå/ÿè2Á?5SI%QXc+q\GÉŽˆ&)9gʶʶÎ0Ì‚
+ñJæ:ù#‚ˆ°À†všÖù–©Úµ÷.„¦=Þœ^ŸÍæ}xe$ã«öÊó??|ý{«“	S¨ßøÂG¿tJú­£¿üÞÞù³ÅÒ\¢q&ÚWš`'“ùîÔðdÑ$8ùµ×Zwí™	Š¡­T‰
+Áô¯½¼|õü± 
+¨¡€¡Úkž9TQx÷ß¼ª—&oNª°¹0¯Žµ[[ôø—÷‹êtuVb
+lêµ
+èç/~鯢O
+dðäÄDò¼MCZÑ:
+äh›‘·Mø¼¬e7G¶$I¥V»ûÁ¬×\í^/.šÍat‰wnV£éĢ쭖{»g÷ÿÓá7ÇßÕŸÜ9_«ÞÜù»‡ ¨¤¿|®zz~ãÿ1XFEÖ�Nì—¿Ñ_éÑã3Õ¨’ZýõÿOwý֍Ñ$tv|}Õ³{Ž“¸
­ï¼ù“{‡—oÈ'@ÈàW¾¸û¿p6à»t½÷þ ëÒÙݺ–nå.>½ÿàþâWßùào×Á
+Æ⬢¼ø¿$eÿñïýòH)	HüaÛj0Ã<#‰>,ÈZô.Ê#㸳.HYhÌ¢mDÅbEÂFÃ~Óvõ•ØñÎXtÜO›Ë½½º>ܱdPjí,pñßùÖ›¶WýsGÕK'?×Î*ûÝ=ø»6»¿e[c�	¼sjö_¬v^^þÍSíÀ&©	X½ô£‡Õå?}¹ê	 wÿÏoüá?þg DElëïÞZáûäTö!ôþ{_¤1õ²4¿þ;7¬rV[¡•–ÖÏÞ¿?šß}çÝÙhÄ?]£¢²#�E
+4}û¯–ˆdOñ•·ê'>£Ô‰‹ú¡‰¶„*ÙLA}jç`®:Ói²M»Œñ‚ò}R|¿ã ö—çëÊô§2òWdgSt2‚ÕhƳê¥ÍhÇ°‡MÕ\8×Å_É«ÏúŸ®Éóñ»óûç¦k¾tõ“tmu:¥ksV½øú!ceO>ÿ|Áĝ`²Y»àýQ}óÄ(ŒGïü÷êÅ—¾üþÆx ŠúÝñ{•¼ñG/|Þ Q?~ýíû¿Õ=ø«Ï\?ÿ½ïî ™hƒèÅ]\,{oß9m»å½?;špL=#šàȱ直üÖÏ×(8“X‰—%£Š"U=7)o[`ÁÅF3‹üfX”cýU¨éáb	؏û95{¶‡½›³É|ö«—4­Ð"©r=é«—Ÿ¬yÖ}ðÕÅ™™:†OÏ_ý:¸ûý«¼¹÷écR¸x¼?>CGÀ×ï,?ytÕ‚G°€5Ê´}ûÙIu|ùÆ'ÎÚß¿gñf½á›ÍlÞØ'ŸžŽ¿ô·ÇvúÝÝÕýÍx§¹7÷/öýsÌí?xÛ
+`O595‚°jýäÆm§K÷ùßÿræë[0Z†]. ¨ÖQVèìµÑBüäÐ'–_Fi–T>&ÔIc�)ˆçÂ5
+BnË9”8SžŠ`i·-x³ž™ÑíƒÝY5®&†ìÈ+B‚‡FC€T<¾ü›/_<zÌèøI¿ýòõ½O~ýÁN!°>ø•RPBÕÿcÈAÕ†q‡±~zøý~þè‡/î?FýåúÓª:üµG'ßÔ@¼^<Û˜[ü¾Ö¿yãtò¬‡ßü·mødröJÕ»¿#T}]ÇFHÅLÓ÷
+«îäâêƒ]L܍×ï^võkž.;iÏWJâ"-æ¸:8ÑQð� „S,–•…½hâ‹â<BRBH±?¥T:€Û—„2Z¼œ›Á:Õ®© zñ½ùΨAv^™	XC@m]m¦}/;ݦBüÙ§Ô:H£	îÌÎ×?:°(ŸŽ=ÈÎU¢BŠh†Ni ð£î«¯|~®£Æù‡GŽë;Oß[hˆÇ
+‘öóï¼õ~x¥8Y}¯µ?|ñ7.ø¥¯ìº*0öÈAv¡
íòÁÑññÓÓ1a6ûÓ
~ãæÏÏz­_9ü)"Žh Xn¸QxqýŒ!P·QžO|q[i¢6)b,E“fßÀ€!„,¼"±uX0 ™ÚœÙƒlî|ãÖ¤nÈ£G¦Áá|ÍÊÚŽìbFˆ+%B`ØûÒžÿç±7‚ˆ|tÞ3 ¦˜D?vŠ< ögO¯Ú<& ÐýÜù̾EÿäÃ?äÃ~ð
¢óÜýÓ³{Ÿ_›õ¥Æ�3�¸@,AÁ¯7ËÅÑÏî+=¸ñòc Ó¯œö/ÜýÉ?6¦wð›«{mÏñg“N}íéC)ç(–”$˜Ù·Í}QÊ`¶Ô,‘ÏXèâqý‹TTjõ—„ÙÏÍÁëw»^©¼ðC`ë‘iª€=†¾ºóPˆ²ùÿé½SíÕ"%&¸ª#Hƒ_°4ä7‚Rðpÿô1ÇAÆiXp0ú—¯øË£õM‡tréÔ†§áw‘GgJÒ{°Úµ»gÇg«:szmtm}4®ŸýÁßž}þÖɉ¹víîk|zSqˆBP¡ùäåW~&±T`T”ÄÊ/plU5 >W]!ÖïÛÙ3D;¿äCH}'¨_!úÕGæ+˜ýÉi (¦Š‘�*
à7Í›�©æ¤°$jXûÁ
N´Ú?Ÿ
fs,%@¤„ñE# -YvÆ€aµY'ß…kŒÑ#gÙûÙ·Ú75 
+>•nüæÁ'O|þ¨zùÅW¿ôè'ŠÒþèõ?øè¯çß{ͬÖóGÿUè@Uµ'½lIþx,ìã0*ˆ’;̉,‚IiÏ�Äm'þ”¸i©b(ÊGdÝœù5U”@ìô\AM3®èÐ4MEÀf k’ŠJ�/
+ãÝ…fbï@ÂPrx`Ø�ŠlÉŒ™#‚¬hFÀ
+Á ’zš¨( ˜d^ƒ¡X§X™5X¤ÝÛûf÷å=♊eª]‹F{¡õÙß~ôøj­îý³ÃÿÒ6bªðéæß}ïÿ9n6ø»?UcÆKUÀkVª9Ò°-¨@¨¹¬H£pMérÑ5Ë#ƒ:pîk$3(Ê6î©Ðþ¢D4Øõ͆jªK€‚胠¢í©÷[›½SaLpBe5B”c–¢ã$4)ã7µ Ä	¢jð‘-Ì„¯„7õ»wß|ý&8¤¶³µ
+čÁyñ~ôãNÁ�÷]U±!mܽ‹ÿòkÎÌïþ³Õ@"¤Z¿Vðp¤
¬É¸AóƒŠn&.¸J*T²$wRœÊ/+ʉ(E!!1X†9r˜Ù©‚MÛÔŽŒK@-k/ÞófóìãOåÚNO/^ûœQ	)ùUFe"I«ä=ŽQ›{졈
+?m4!° €ïî×rÚrûèA+‡oܾ>‡å8¬›j|“9ׇþéßýíYÂØ @Ê4zãz?>\ë¯,JŒz]{p‰HJª`Š
+iFêfűb7möª¡K3î_(ïnÆ¢qà§Äë‘@ͬÍh‰,˵0zéüê‚D`B?úéÇå.O¯¹»ç%ÊP~£TYQÖeËieQ/Óh‚|ãÒEqö!%5=Áü7¿fXœ=º<âק×+ujÄÖ"Ö0°W€ D1„Í“þèX‰ˆ{S³1Ü=›Ïº¿yâëT;Tíz&£Ü½µÿWk!¿Ý±§LÕ“bË™¸;ñ{ƒd5Q›ReŽ[ú®IŽ^‹hâeLc¡éY�#k£h†›åòêè“'«ÅäÎëwö×ïýãÕäݯپò£îrá‚u5ËA@Ä¡QºY@’£1q‹â�J#ÕÝ/üâ|ôÄ(äš_ykì½VH}Z7ZÔa<êXhä�D‘‰.íU%,Ž?üÙ	�K¦²Tae—?f•1ÐÚo‚ñ"LžuúÖÓg5hšŒµZ	¬ª….iaDÁ¨&½ȏ2>TH-Ñ`Ó”9 –ŽÉâ|¼R#®ž×èÛöøüüâèá
+›ÅUxax¼÷Ú­'ç“—oNÎçB§½ ĉ2˜Dâ3±lJ¼Ib`béÁ(�*å>Z÷ÑèË{¾ÑՏF-Õ`ŪxKA@;4ÒzQqÏ>?¾êµî™ˆ9NH*�‹ÄB`ЄŠñô–VÈ׏?o”h‘š°ä˜¯�™!poia–®Fqû%aÂüšró¤¿Ë~4ZƒÂÆ¢¨,ÏOÎêùko0wî6û´'»Gÿ�{;'_¼{¤¯].„„2KU)ëÛ
ÂM”gB"U`QT$2Ó«˜ùUDÁjýñÉìÝH@ÉTU0¬»±p­0a‚»:=¿T4ÀDlØ"ÃÀäMƒ(tR5`V?m ·?qHÛæuîJ
+PB_Á{
‚E¨ÄÅ…N[¸p`Qs9‰ÚŠ ˜.%gØ~,*ÄÂdv`ÕLÑoŽ·÷Âêdu0:ì­&ºx8šÎ˜Âåe ˜U&%—4‹CDˆÏ'8p9À ¾â	©3.)„ˆöæík“ÿxçÚÝ@‚  ‘În°ëŒ,Èyá~¥F
ƒQœ|á…÷ûÏŽ;PPcMeˆŒaKR	 ’,¯úžz&U1¡
+ƒ¼2Ðv
+­¹E§¨C
cžÛ1…½K§ƒ…(à	1(ú[TÄUFDÜЖ›ÙZ¯²–™ÿ´?=ÑK¸^­þâÚw_Žök3yÇOfªÀŽ"È÷¶Ÿ¦Í¿VÉØ@O¨êx*NјNç³›7o\<zu磧íHzô$\…Nƒ®E×£Õ&4¡d«À–`|ý¿ûèÙÑñÙj½¼pdÐVLL¨DÃ'Û|ÚaVxwIŒ•Ñg~ˆè¶<`îs²°"4 ¡tý‹×@q_R£‘Ž¹’\"HÄÝxo_ù^óóŸÿäxÖ°4/ß{ß×¼;ÝkaÆõîüërBW»7øÉ­346kÇEQ:Ä×…"šC‘„ªêËçP”ªš×ïÞýÊÍq½3ÖÅbç¥nõÃÝo’Ñ@*ˆ›µrÖ}:Ïà<PSV¤Ú£ñÞ>ö«U+Ë~ñi‡Œƒ€
ÿ«{‚Uʏ xliЖ”hù•�˜“³P‘ÍÓìGSœ…tX脬-3›èµR”$=Ö“°÷Gwþãf§]5~ö¢à›½§Šd¼ó¦T¦³{ý-@³ñûõûgI-1“P Ä×<gœA)é  F<Ä¥²Å÷Æ­¦_ûÖݸ^;«t0Ú|iñƒÍ¿¦ZˆÌ99Z®{ßbðâ ªg“JÙ{ma=5RO`týýƒ˜³”¡5‹HXöWˆê9°’å¶ƲÐC€öFyØÑñQ0w J˜Ôb)a’ù„t[ì(î?"{@øôö¿õÂOÞ­a|x0=ÏŸ-ÄÌ÷æ/ÀGÔ»êúb}Ã2Q_Á“.˜L¢D0	às…
+âð?ucÒlX=“[´Sq~÷w¾}X£‚^­÷×a—	æßþ“ÿò=k �ű}0j/–ëug@$ˆ­Æ“1ÛªÃêÜ3{iF¬¯_ÿõß·V¼R̆ p¶ó+WITC¢†”3©$y꤆G{&&“%°2!'2_!å30|ô7IÒ%‚lÜfó£=ÝœßVliWß`CSC›'ó›ÔóÞ¯|ðé¾%¼\ô¾ö˜û‰ÉQ!÷?âِãj‚}�¹ú•ëÓu?}µû•_ßð€TN]¨föð“ŸÜ‘ŽăèîG«ÍfáD—WK¯f6mVÉÖi‚sF
šÖ<Ú¯ëÚ„Á';õ‹©@„ ¹ø ˜¼GS”ÁÁ'§1í¨ÞzñvÍÈn
g³Oi
+7¥h'RD‰õpFT²bÆ5((©ÓñÎ˳ãMí=U¼Û;+˜6Ô÷þòÑ^
•©[X7Sò}&$\@*r—%5ùLN6£4Cd
®o·~ýâ¾ýîµW'µx+€ o'ÀB»«ég÷^G*â=MvV«¾_^\,6»{;c@Ue…‘©ßyA,Æ$‰pèz“QŽT ©òPm bq
+�Pv·}û•Ÿ·c¸û¡)àÑrÕ’´Q9<%áÏ ”imA’iªl¨­¯¿ØžÔ·*ÒÞºva¹;gãûì!Õ»M€êÐ?݃8Õ(P‘ûqª’Œ_J½Å允w �"ž._ºûꌂ’èP‚7²i<¢U3½Eÿ|z!аžŸøÕòj¹nx]®Ïš×à:Õ�h�­iúgqCƒTb”ã2¡JÊÛÈ¤<tóôœ0J‹�uøÖ—~vƒE}af ¾0ö=³x0…܍Žymž–„1“±"Õ;ØÍhwòxùÚí3açè\úª6Aäbõp÷¶®ÅºéÓCBÁ`X{6²BSï p#›¬™2öJÓ/½ñö›fÌBTeÏìZTÅ@}ÀÇOnK§kÙèMþ _õÞ{QÖæƾyô4PP#€HX±Z|aüÏÃAG”±#чǁÏÛ6"{	J„"<ÈhJ
+çJþÕ¯þâ=«‚‘òE(ª@hŠyaÒQÌ›\XD6~"·°êtOçwfW]ÎXíeqþt¯:>ªwFáï/_ª{&Aº
+0Ù`Ñ?ŽÕaŽ’Õaì¼ýµ—g#•¥4¨GQUP¼ãspwozV§mk×/ü«Á%ux±Ùô€�®ÞY;KR‘qÕÿÄAAl�Ò¤Ö $j@¨'î!ªrªfSµý „€ª¤±üŠB¿õðg½š 6>aï†i¡$âF‰'qy¿Êa3É×SÚpDJ²3º3š´ªà7\m–¦ÁUxqõ£ûO?17®¿÷ÚW.}è±h˜…@yØÀ9MÅw€
Žn¾ûW´7hBï•{«ADt�}
ŠÒvg#vó9¨n\ ¹xuïh‚[u£,È×^½ôÞ/ƒ1¢ÆïX1†Ó¹\ÚîD¤¨,ÝPHh7YquóÚû+m	!b<=´ÐckóWÄàÃ‡gˆ#V&å´1’3çÍnŠØEŠHžö*¼éÚWoè¹ôd¥rêéÍݏÿúÂébçÚöüjÝ…«Öxˆwð´?í}·N@b"*¾F
+˜4Ñq~ãæ[¯Mdð´µ<òð‹³èÏ>í¨‚ê›uµw~\Ú@<^¿DF=ÃéfïÅË‹@/Õ7Lºñ€@(pÁ´ "p-£Ù>ÿ˜æ»~ÚÌ6k“/ŽŸ`–j2]EDI O9ø•?jô¬Ä.Mi&ƒ
+`
+ÌEð…# ¦ &“;Þ–@ï€\펯©:×1uÈÒyi¸&+·Ûµ—årþêÞ%g“nÕ÷Êj@‡@í­ë}=~ôé’€4ž	\„	”¹ý7ß>äq¥ FH}Å¢(Nþèæ“îç�AVgÓq5Ú|>ƒ8ï=¨¿þ̪Š¸…"ÈÆÏv°7wÍlþÁC!ci¦•¬BŠ³BÂnß¡Â7ßùîÏþl}ðö¼ÿéŠ&ðÃ'
:y}²b8ëkPQ«É£ßÖ_€‚@€ƒ]5�’ª  e,€E5¶Ù
+,«&”¯Xxr­êñÚ¦Ó>¨ÖÞiU0Ífô‚<ídöâˇè®`:á>@ÿ@Áú@ÍÎÍïüüQ'Ä�šT©Q(x~ý7_ž…“ûþƒàaµ”rIÃÝñōڵhdýø¨? ùÕƒ9 t§$çÍÞûÕºXéþls‡úƒöüÑF	‘^xktý…/-žôhàm2((«¢»ùküÁÁ7¾ñòg?“?|ãgßêüÆ“p±úÆýO{Ü{çâÃÞMßœ„ËÓõb=ßUï=s¢|óѲŽ))àj0CKô‹Œ¦ÃìLADªàáy«ºœ„d^8Ötímß-°¯i-ì<*s»ÆiuãÊËÎlÚXuÖ6RŒZqÚn„.î½ùúÕ¥¢R’„,¡�õ—þ«ë�¸Ã‹ÝÚ†£«OÃa%Œl-^ÞW³RÑÐ>»Ä«ñl´~¸?%·jaåÜñCõ.y.²ivŽž†—¸S´ˆÔ?å폡WƒŠLYþÈMn_þ“¡îí'?Þø¾¸3þ³—®®LèÞ¿ûÅ·>þÔ_ß;^7ß
+¿èö¿·ùÁµ_Ÿ˜öÚ?<R4;ÿäm<ÝPÕ€†¤;“TëAiˆõ:Ä@Î[ Q7hä剂pö£ƒêÉ¥x´Ö€„Î6m«³ëúøryrLgFÈ®ƒ°"V�$õuÿøÚáÒ@RŠÓ!Eµ›|ã÷n‰Rèç+‡F�QVŸœ¼hC_T¨úprQ
+kX-€ig~~ß=½Öx²ô&£+õŠ¨”Æ»ó§'î©åúùÅ&PX,[¢VÖ BQ I‰ô­·Ì<]ûŸ}#Ͼò½?}éËŸ]Qüìèõ¯¾ó·ÿ•ÿöÓ'fs;òêñ·¿Ôݺ0ç„Z5W"§^¤Ðåú½ˆ6kVIõY”'ΰÌ~"øì?ø
î#xÐVSõmw¹`ýàÁåBu­ß½vëËìWÑ”D9 
@}wP?¸âT/ñÐ?`àððûßܠލaÇu¶F•‹ÏÜÜ¥@¢Aiùq¿Ô«Á«'p¸{€ÏîwÇçèWÝ&˜µ‚*ËPõ ¬Ö÷[5úìâÎámvÔTø‰g7yûV7ëvµYµ:¿½ó13}ï¬?ÿÓÿæ;ï}pÏŠG4›ŸýòÛ¿þþãíw¾qüiU2~ïÙÉùùÉõ»Ê ›Gû0�¬I5 ÌL¶w7РÒÃ
+Š"R¤™Ó…`ƒ2!Ÿ…¾J"Öj¯hýñ¦x>šŽûúÄ¿þ–YéÚ%£+Ð~÷K÷6
ÐPt1Febog/½ôæKS‚@oÚg§/Ô¸	D èá£)ŠVX_>ºØ;8¨Î_êåúÐoνh/žùd IÒõJV•ŸLFhÄ�ü�QÛGçÓ|/ÕüÀŸ/AV¿hCxôÇN E=ÿ˯ìLï|þ´'‚þ¨üüã;¿1ýÀí}ANÏ'·j`ñ⏙‘"’)•à1ŸKvàXÔG1º)ˆF5mÒ¡ù_Pa"ðß+:PReèŒp΄ÍÕ§màpÕWöÍ·µZœ\^uÎ#Å”C"$'Ðwß#@Uñ]
À¢âª»_úÒm
+¡³lP¡èЋÓæ8’
+…ñüý¾îvzš\üüñhañä(àåtÅ:yØÇt1Yz
+0’¬ÖÄ#ö®FÒ'>Úr\UÕ}ð©CèÚˆ1úèÉu½\T³·;{áògß™ît4í{g �|ØGØø&ÄÛ>.tä'Ò&Pé<cÖ>o'H Éü„@‘²éJ’©SèœFWÏÚÅøîtgZ3=/Î÷VW®[.Ñ+Pöw¯Lÿ]gˆpßìÞ™ž<ڠ൯ï.¢¨�e´wÙ‚Pæ¦Ô…‘A=~p¾;îºú|ùáÃj÷ÐÈÕƒ…¨{|K]ãzíaÝVs{ðtL&Y
€W&És{B$â0KS Pû¹g‹ë;×/?|¼¶°ÿBûÏLjîC"ÅÐ̏Â£ÍíÏ"jž'J%/Å\ŠPAcٍQ%;»€h¦±sT'˜ÙÜ FQ‚S�f€¶ƒÑááhgw6¶Ð-Þ¿ÍÛ•`„–P‘tÐÖS¹û…¿#dö×õÛ£“ÿÝÉ­o~ñ•1S<›Å‹újêú@í¦KÁQ#UA/Ôµà—÷×ÓQ3
>
+8Y·è°ëÝÑ3Á„ȤWF¢èâ ˆ†€†?R"àlv—ð<j 3‚ýGõ>4^?½ç•) ²§wÐæ'ߺXÚ.7°ïT“î Efj‰½‘
+IÑ ¼È?ª !o9
+Z§u…m 
IEqÿšÿüÓÆ+u?~EZqì-;�bUJ “¯>=Û
äÛýóU7©&7¯¾uPôDƒÔ†w
+ªjˆ—k®PD¸¢²¨;7²¹ë{“}ÿɧW³‘ã«=–ó'=&Ÿ	xÂœÈÒ L4$c)�ð`ê�H¥˜Ç+°»´±ÁªG”&¸™¼õø”Qøã׿óçLCC&Ê7$gPL²š\²jQA ,P1%ÞR,$M$ç¹Õš;WƒŠTÐmv,f¶ñ©n6Lû/î;²êWNBÀT,Š¾~¹ÓƒôÍ·—²§ü­±«
+АÑû�VE	ظöh3VŠBAN1¶•k?{"{×®ï¯îÿô©_š^<4Š§OÏ¥BÊŠGš‡@Tˆ?´¶ÑEY°ø¨‚�ÈÚaïȈUVéP`cÝÚÊt¿}ó·ŽþnA˜6ðçßûÚß«Qe5ÅØFià½(Gíñ<‚´O4ûAJñé”ØãdˆÄ;ë͋S»EòhÃƃ³½ŸÞåÚÁæÅ¥fº9õLU@�f ß>m+Cºù¯Î?º1-6R�
+AœU­+4(G˽áºï,S蟝3P3?½‡{aÓöøJŒ§ÍyÍÝòä¢G”@‰†ð`iP?Â%%%Ð�R¤0‚RL¡§Áªg(òë/w¿ü‡óÊsPêøÏïkë!’`Àw[-Q,y4¦!V²ŠŒ8TB!„Øá"p¬³ýö£gÓWæ}‡��½²õ\YR3½Vkmön4nãõì’QÑ &y&ÍÇrýÖ͝ªå[ÔTÞÊdµÞ:\¥Ð‘4Ì‚jøêY° zè7§mM•˝ùÄú‹ã“µ¼8ÝÐñù¹Þ—ŠDIˆ:jèÇ]FHT:1“y#Š’×%³§Äò�½"œÿŨom€Î^üäƤUVQ(ÃÙíß";¶Ø™b6ñÚr$”äÒŠdôàÝÿ|.v4&;èJ83B?iö™-ÛjsîuuÖ£QaR0F•D%4³W¿ð¥ƒéƒ_àLWí¼¯{êaÔpP×Õ
+ê
yÔÊ}~Ui[ö¨à ,ÏÛµ_Mg³ÝͽãEÂɳ—ÞkT"Ç$åEJÖ�£ 
ÚdH¤Eº‚i{^œ\…™ýUH[¬“‹²Â§[uCl¡ì
+œb€Ž—¶˜×cžô’h".lVæúy¡™pݬ‚niêÊÓÞ'ÔÂfí»Ó%«€G]<6‡_~÷U¬&`1°ñOúƒ¶FSo}ç”™©k!€ôÞŽ*Ôúâ’
”¸	‹e`+í…Ù=¬GpòÑfÙêù£M¨&G¤2ЈS}Œ abL>±Åáe>]œÑãZ•€à(>l hY„¡À
¶ayè›Eç5&Ö(¤Åf"~5àÉ”°¯ºzwF×­Tã5“‚¨¢eWïv¸Ù™-9´«~utFŠ^HP—f÷…Ãf·oÏA‰Ä`£ó°'kQkè–µA^vu M`m­žøúoÌê
+«¾§öþý[
+A;sínøçO­ô'Ç­�qRFÌ„‰”“qÌ#¤BQ¥")‚ÄI^ò$()¿AÁ’Æ€ˆJ„":±b@Á¤ÅÅ-CÍ-"9¥�R€ò%ÀÍ’(uŠ¶kÆ»ßüø4û¯ÚÚ4•ˆô½ˆ û/÷æí£Q=m—²YŸ¬ÇõÞÎôüát~ûWo3
+»j¬(÷ÄA‰v6«JU¤ªÔƒ,{dìÔˆsDJfcÖ'›3=7 ìÖ³zz!LÕªÝ4MrüÙ…uçÇçžDP€°\HšµˆJBC¡¤*ÃJG¯&Ê+:À.)Õf¥lCAÊDæD`„EË‚¡VU>±² KðÆTƒryžŠB(#Cv�Ï«ßûèç‡l¸/	P=ªªë¼ë&;2›å赋—ß¹±³XÎgctm
À•xbÆ�žšˆE™˜Ú©œTÚÚ±�ž\_›
zPU·vG8u§<…Å“ó5ÁÑÃ6Då`Ø®k5ƒp!g˜r=%
+’kó4ÅÔâó)*ªZ\:ADÑúèg%CÒ½cÊ	¨ŠX\Ô3ZD1sôËk‹Ùqqs £óIûÊÿñÿööž#[¨…H@UI;éúV@¦³É³{·Z¾Õ œÔ4È m•I+]W�HƒïÝ…1ÕxRlOÖ0Û«7F]mVçmA:·ÕêBÚ Ï®Òü®€Œu8†mŽZzꈢ 2* Ò@0Ž÷|z«ØrLªZDã!›—
w쬘çF°ñËømÑ•(žïå‘­WŠ`~ ÞßQ÷Îÿy±ã5“¶Çž¸´¤Ò©_ƒw4š^ÓóŸÿ}óªßbUõÊL*Da`,Bõ„`ܪ&PQÞl‚óB4šPggÎV£YC@&ÈåçOx1«ãózµ„ñhóäh=sšc¨‚Ð�ƒŠu�
=4ŠAÓL‡åC¦mØ9äö}Ùo
+i×ei{I€dM\ðçHYX<ƒ‹Mi	ã[«­Eã#¶h¤ya„FãÉ©_š¸óÀbç%Õ÷MU5Ó‰Ó7g?ýàjí-¡¥4;VA£QÔA­°q†˜BÛ
+LÇc;·=µÇk“ɘÖ•,î=ézrWOE}Å'÷κ-7̲—4¡~4Û“‡¬":ÜѨrœ(ö¤XüŠ4R1*–¬”„‰�­¼M좫i,jJåž!|î¨Îivéò±Lo#£lnÍQÀp%&€HôM'àÚ2Û–æ3þô£¯{ñ•®Ì˜šž
+°UDt-(h‚vk/Ø4h*¾<óÜŒBk혤ziø³%ù æÑçKEA’ÏVJ‚!I_c®È0*5häe"'Óï„¥*‘>#á4“ì@RɺØÃlKÁ’ ±Y²X4þÌ´mK¦Ïõª2÷_@5°vÓWm+…Ê»1/û.Ð0C®,رë*ý­ÛÖ|ý¸¯jjݸB$¨¾'+"*T{£‘¢Ût†ëQ=3Î^=^¨C3®Ùyô󏖈HpŒUø褊+ÎÊg„…IW¦¢4è'%gŠ{Œ²[tò‰Åä6±3_A!Bôãå„âf‡9tPóVŲ~é#æ­Œ<Èû”óÃ`ã$õ[8÷ÔwÒ­wnœ®,‡B'°TPÃHž›q¥^‚¾sùÇ7¯_lF¶ºZά"Ö@$êň¨ Õ°îG^,£_«¡ª©&Ök89í‰j«óæìý.-$=ÃùƒÓ(PšL£ªKRpK!
+ˆ)µrR;oÈ=HÀäÜ$.KS
+B”$„äNÅ[[0"ÛRÊL&Ųb“÷¼.Q„ÿS\ðä”—0s„"ˆ€ï~çëûkKËНNo-¯–|}³Ò¥aW÷Ȩ�†›½ùÅÅ‘Ô7ÿÕÅÿ𿻶XOio¹œT=�õ¤.°"Óz*êW^»ªß;K8šYÄ/_nFFÝe[‡öƒ_^¨Qe•F–gJÏš•H¨Ã`^íXÄè‘v{Q­Â”:Ì\<ý3DN©d%ET-À`Ò1š°û‘¿¼ÅÌÂâÒ­ÙÇ“•7Œõ_½Ãž‚ŽpLXÈÞìñ…îÕ^MÀW4‰Í'ÖÚ<åÿðßþéMÛºÁlˆ{PBñꩶ~µç}·ñÀ¼Šô<6•øОž^u“ŠšÞo6Oî_ªõfÖ¯Ýâäè²cUJZ«YÜ?£&s˜ÀìEUHw 1ê*
+z¡r‚)P΢²ªfúU,XR­Žñ‰ììg�±±âHj«ÿA%FhŠÐÉ„?9ïIÐ[¿ó­ë&# ÊwȺXÍoè™­ÔT¿³ÀàA¡fŽ+Ý\â-@^üþg'à 6ã•c
+¨Ä«5Ð÷>H+6Ô®:¬G
¡†°>[…YMRYìVŸ‚E%«^ÂÙ‡—Q¢  Å*”÷0"`²Þ ÔPм¦š tª©6Û7gkh¢ 9ù•Ü,´Ð1À˜d080ýÊÌU“Œ!Pl_alà n™•bàøÖÿé݆ԛÊ1¢	îrò²¿š	ú÷lزcìtZ5þ¢'3¹¡¹ü×ûcj}4vÞÊð¡U¯ª†18‡¶1*^“©'µ==ëhL•Q…õÑ	Ø>LF{áþêâÓcc‚‚…‘Ã2�ñPY‚"'JeÁ‰“'ÅRø¶J©ÝdðÙÝzªt›)ïNT�SˆWÛÉ=jÚó„ɾ3Œ5„iÿ»ÿf'ˆA_‹Šâ¨ZõVßø’ùpÒªV7v\ïٍ«ÚR_O/'ö—{¯ÿÛðkAfEO(-ª·êýf=n\¯nåÉÌšCñøñzÏX˜6ëöêþåŠ
+Ëg«põð’Õ£^Ó´
0íbbæ|" r™9GAùHnMå"§À[RßÒr‹®‹!¿¢<¤HX§³Ñ�PÉë2š¢H_5Nu%"!x¤\½úÛ¿1멱F{­8¨öbÑ‹¿údygsVNýªß¨ Z³t×Fµÿ÷ïûó_üéf_n6žI­8
A xÖÁ/@{QÒ÷N›yì6WOOºÚý‡öøJëÚjè.uùèJ"ž™†È[špD¨ÄÀˆ?žuHˆÉŽ
xˆè…ÞfHˆQÁFµTvƒdÌ+¦Š¨´÷òÁŒ4 ‡hMy†xýSßÌ[&Dˆ÷‘"z¤w¿ÿî$@V£hœ wZë¦ñO.o__-§£õâx%„–, Ùø£æ“ÿ©údõ}ú›¿¼ùŠUÏäý@3`d&‡* ÒmÀ­dOÓÅ·‹³Ó…pPA+ÝÕy§†zÔ£ã¥"2$ñWjÑq~2”|[PŒU
+pDç$9¹’³ª$hBbjŽèHñ•)”G­Æ×<Wª`!�
EeɐāÓÁ}÷w_3hI°ƒQ´“Qo× @`q^9ýIû…îxtÍzoɲ€vãêÑbÓ×—?ûÃßÿàù?Ì7†y†œ"ˆx°ÆW	~<F¯›M¿ºlÉTÆ9pÏÎZ¬ôôÉã+74Š$í0Žš‰"vx	S*I
,¡[J•ïnBH{èùÕäìˆméKYj¼äT‹ªù)º°Y&•YM¬Ø»ú¿ü/YÀ©¦R…³Û“@ÞIorÝ~ö?|õúôÑ{ïîw‹IPïg«ÍÁ\¯ÎþøÆ»¿ÿÆŸüÉc<[|0„Y\
+ã)h�;£Žµ
‹ãs×Ü ú°<Û°í¤ýôÞ¢WDÂâÐOÉ/%’ô‘Ò´0~Q´¯Ëܪ¬_QŒÑ²_c¯Iõ9VÎ4ÈC‰bŠÏ
+ÛLY4±‘ì4@T43U(%)2¤’˜½ª( Ýù¯¾3‡c¤uX£Õñùý×ÉvF@šºwë÷ÿisþ³Ÿ-ŸŒÙšÚDèÌõP¹§þ¯¿ûÛ¯ÿxý‹$ëÅ@@f” >ÒÎÌïœë)€¨®=êƍQm°?yxÐûgŽûÄëÂ2ÄH%6â°§5%HqiãJ9nâvWÆM å”6<¦<ƒq‹¿Všq>:³Í²~˜Ä8¹„Å‘bA}Å_úý7+t@B€h´[N¬ÙûQsÄ(u0Æ‘Y5‡õzsŒ/έ’³£5¯®»7šÿøà÷«ówízPm­%TÀ«Wp‚´ÆلеWkYªîÞƒ+[“`ßÈÕ½Ç8ê7';d±¨ºµ">)®*¦MŸŠ¸É4	Òk©[rq#XRìØNª‹»	 ÉöUŠVYd�))ë"&\ñ"+Õ”J´gÌ}ŒÿÎ÷n	¡EQeÀéÅ弞ÜüÅþÔ@¨ØëÈýB*é¨2ýk›¾§jÕÌa:™ýFûå;'ý+“ƒoýßô}+œ%'ÞÚ
n²U­N[§Ä#Û8õçŸ]±E ¦›“sõ®{rÕ•f(æ|‡•æt&* TU(pŸÜ3#€l­,Å™ƒd›ëX:?ÃsJ$�ŠLIlJ5Örñè¥:J³sk>(@¥E(RôxÀ}ÿæĉ)ž¯<9?ß½~t4'4ä•ß{_×N¼†ÆœK­ŸJ¿73ý¨þuvÿ/W¯Œ_¿ý÷Þqí;BÌ*èHHiæXœ_w8¦ÊšÐ¿®õ¸!Ë¡¿x¸™,ŽN—‘ü\Ç8	¡
~B”XcÈÌÃe‰5pˆm¶"V­Ü¡Oj
+`ȸóB�ˆy´åª¢T¢¿Ùî´¤*]!6À ¨jÎÈ9ÚM|õí?Ü
”Ø`¼ýB³szê/;oÀH°\ýòÿ}<kH¼[™ñÁŽëê)èNƒó‘køjón°(;_ÿŸÿæeë	DU!CÚ†ÚZ¯Ý¬ŒFҝ|ö¨«‘ŒHϛNj~õôÄ¡Ht™-ôÈÔJ%˜¤ä�Q%�DåR­0´U·û9”DPE¾Ù¼Je„¶ˆªE™4¦öl¶r»íß’Eb9?³“*’o~ã_Ï”
3'b)èX/¯Æu8½HBôð¿ÿ¤i;D[s8Z\ëÖ;Ä+Ý­q—ÆŒÛ~L
+Õ¯|òàÞ«ÐUC@å.Ø:¸<Šh¤ÝâèñJm¥Ž¶'›'ç­¨
+pŽ%nҐ—!¤æ(#Eˆ F£ÙìA˜~Ê b=ÄÙy+uåJ]º*�0³§2•[Õlå×B¡–yv"´%JŠ™¤Ü~óûs(¶<IQ•D'tÞR{1yö?~üâ,†à;˜N?ºt;;¸¤Ýšë+f �„tðµ¿øùKÜ@°V½Š§LÊ‚€Ö…¹•õ£{—`
‡P‘;vöøTC´'Œ¶ˆÏMà4Î\EÇ*%U»¥1!»DCŽÑ¹Ÿ–
+5 ´•XU%¶<"@”D!9êÇÝ®`€Lš$d~§ ¤ÈªÑ¼Z8°ˆ•—ï[•Æ`N_‘&æjcÎ>›`óàß=ù¯w›ÅÙ%U]¿|èÞ9ûÑéwš‹šÊ:œÕj…”î¾uïÞ»ÞÀ�(N,¦•§Éd<ÂËïŸöÒÔc’uµ|úøÁR�8hV!G,³|$Ì’ƒ:|/JÀÀ
+€T€cO#w/E	·9þY¡Ûö à"_£÷¥Á¢‚À0“Ä
H"v@a§§,–¨[£±YLO¬_þׯ3!mÉ—㦗§wFí{ÿߣ/ìÌæ×_{ú¤êüàôj~íñÿôŽ›UÌ-Œjª`¤pöêùý7f²éƒw˜‚snV9¶•á`-úóÕç7lSˆï.Þ_j”ÙæEÆŠŠ†©™¦N¥¬—T�Æ]“‹Ä,O£AN™s_B‘5‰·(%C¤4)‹xJ·„jé~'M¥¬Üýü [„eX嘻”ÙËøzˆ'`þ»"
+˜»1nïóóõŸýeøÂõzl¤º=?r¤Ýly5;Üœ¬¾3ÆöLÙ2¢	 >ˆ½qûüÙlƒü
8\ÙšûÍÆOÂêôâ´Ʋ9ÿìÉ"gX4Ì?ó!“>*2$U" ¢X=¦ftçÄŒóÖÉ›·Ô¤Î•|c%]æ4Z­ÈPøh
+æL&gˆEP°€)ˆ2-Z4Þ«ã7¿|ì<%QHR•Âm,];{ï£ÿ4ÿâ­ýÙÈ�™i³Zº©nVë
TG³
+]¯
VŒ*xòâúéK@µ†j†¤Ûô°ÌäÏ.CðìÑ“
§>XÇv{i¹§· Òó`JÍbÚNuà»o•&¹‹„ªOrŠËŠ¬n±þH¯•ø3.aèÜƵBÌ£•QÉwчxgö«oÐ$h bL
† "jÂýwïþ×¼¿?±üf
Hê»ÜiØKeñ!ˆ*¢=<=ÞLÀÔÎ!jPQÓÔ½iÁPMОÞê8lL->ø“÷?ë8«ä[	:H˜%ÜŠ!„*iÀxoƒ¦nPê\Šlá;5þË(I†H”fãÒRÊPDÕ$—&Ä- 
+˜(‡þüH¶p‹ÜÎ Õ
29üò[Ĩo†&nP6•z/J}¨aôÖ뀎‘
dõ!{ÂêÙ™\]ìÆÁÇé|5¿ùáùµj´R@厫ž+ò닇×:a-ýæþg’ãkÉKc˜Í‡[iKxIe:IÑÊ@@ˆ „Õ«‹@öà*,ª„öÔ$‰skJmg �QIYq"ö©	XÐI”-ýBñ®C‰­¨õ«¿òFh¯©׈Á#*1¨Á2³ú�äA˜«ù˜P+
"ηph6íCžï1€ˆú�€AjÜáñµ
+Ä0÷U¬R	ø 5w°<YÖ²èÙ1ÚÅÑý“ ¢ä…�$[Jåv£"Pªè€4G¤(N/˜Î0ƒª<ì6‰†í’aB&*†˜$@HG›ÄK4ù³–˜Ò&,¿kÅ[ iF¿¼oa=’O†D@!K´†,ë€~ñƒÛ_U…Þ稩äto3™h@%ˆ�Õtº\î"¬$õ`'ýš7´¾=¿¿²NÉ›‘¬Ÿ}v&Yû—ô¹yé6î
+#Ö¹PFTIPA¶± „y	5Þß’$’Oi>ÝR)Z0Ò¥Ü+ѪXAêÀ3Ü
+Jé¼ÄbxšÞ’`÷¶2›"€µÝô¶ªX°0ö»ÈˆÈ¢AD iJð½ÅÑĆË3a_!ˆw€P`<߬f¨­oªÖ�Zq²œ0ôŸôN‚>ýèÂK‡ªÜ`Z#¤bVóµBÎHi(k„ iÉò#n‘Ò¸}~/A¿¶Ø�éé4¢ÒÛE¼+h8~¼ò‹U˜üîDëfj:ß7Ø*r[±öÞ"xQˈ@2¸{kd)ú®ó"dªY@íhÇ’´5ŠÃ! 3šÙU'Ô¯6û¬A±êÛ–ÐR{òø2˜Nx£¸¼üô1¤”^r¥””¡XÐ!)CRAÀô@>orª„qÆ]&Rÿr¢{Ÿ¦´üɺR:h!¢šôš®åVµ’úé±w☾õ½'OpÇ.V
fQ1Α¥ A¥Ã‘5YEQl2¸õ¦F¶µ”wÇgX}EQ…ìĵµsíºá€¸Ts4éOZOF\«N¯>ºbU*ÿó5,ºïϪ˜jÅ<	8Ã|÷ÓâümTˆË+€%t h‚dl†Š‘Û€
&Ã)0ÀUÖj‘˜Ž„vŒÑ„Âá×wÂ3^·v‚.van;F•àݺOF†
+|“ÀwëÅb¶ìŒfd î„E†£š˜ˆ«~e€(ùPY¸ZŒì‹m¥â,làòóÅò
+)Ç»°-±bú&	ª@Jqá	"àPá\,¢Â…ï—OJV¿,NJ’À`
+XbIIéA²”­”r50Ž[¢±>ƒjê`›[—/7Õx,Ⱦ­D·.XCkl´„k0@uðÃPô›Åå'e6ØÍ®ƒ	U]I¿VF†À–„F•l†D™ÁÓõ»—òT'Ðw]†óûkŠio6íÏÍ9H2A$S§Ê:Š
&µ
+ài À	OÅwËs©ì~2œˆ"I„¿ ŸE†§ Ühñj(Áp“
ÃÙ<V)jçEÃ!•“jöùçӝñÔ!*aP@F5ÚV6T5kŒHûÕùù†§ã†QÄìõ#Ä$jŒ�±ë™C諒„«ƒÅ³ÃJµÚÔ;Ÿµã@U-VõˆûGÏ6 ˜¹MÿÒ†sH8²™	D±òÀbg§e.U„±•Pòs
+£Ú—R)­p~i�|
+ŠCz§Iy»ô	¶z„¹9«ˆ2{i¹øâÞé@Ë	@ˆ¢A­¢Š%(ö-ÙÄlߝ=êF“Ù¨" &rêÇu{ ŠÖx`ßwλڈ=˜5üç½RG€UnýíL'n½	 xÿq³Qu"8Åë”"eðI¶ÙŽÈdÊMÅd¿`£Elž8aÖÆ¢)KŒû¯¨Ò•$­›**ñÄ•סZ®lBG"j”UÍ %Ôýƒãk×æì+gÁ.¨ŽÙä:aׂi¢S*öçÏ6£ùÎdD*C±.v¶VÃÈÐw–L%7óɨ¶Ä ;üŠ{@ÄH{ýåcÝLû˵íï}Ü£"Jô³H+®e1·°­Á¥¹0Ì,¸47zŽD,#ÁÅIJb­33}Î@:ýŸŸ¡œÓ!	¡•yT !I/ÅÊ)m€b„ƒj®×ËWv¬	¬AA %֍N|cRئ[Û¡kV÷/ö'ã‘Á!dVÇ}͈²†;“Ê"TE¡ÛŸØ†Æh€~q°¼lOåÁ“K§ŒÂ
+ˆe#oKR§ò9mÕ„q,=ƒ\I1(oKFÊX<À|º!Ç„¼ h¢°ó°^„ª’©Ç©9¢ h€˜²gEáAjü{~Êõ­úöMŒX�®qI¼‚0 O*<Y-pZ÷›§Æ;;MS

-
"õå²Rák/@�d®)¢ã‹?ݸV?]ÍO7áhÏžl‚ hÆvKšÙ	©B®m;�be®JA(`V•a~û¡šFQLC‘¬!ö¶Ë±ÌÀâH$Cpt›K¥DÈ×�ñsT L—e§H?Pá±ï×Ñ0}Ø0ôb‘Ðè†0€€n¨Þl|˜5/?o^:h,%¿3©7Ç{žL@e}òñÝëçïßžuÜ­6/÷vO5(ÄŠò¾¾tÇËË6Ꮮ;¹J›UÊRÀˆI\Á8ÆJ)'c¢ çƒL�$/8 d ¸DRL®¥TsB…º#‹ày€ú01Ã2fÀnÌdÿ•$jLjìÔxRÃ#A¯†»Î°žÎæìå¸Ábg‡5Ø: úÇ«7o9Šø£
+Šjº{¯™@‚-¬ù'ãÿöåWf§ëêÉŽÛLt~t]*ƒªêÈx}Ö.å×v½Z(K¥;W¦|‚¤€Ùò¢Bâs’7aNÐR^·5ÐÂ8
Kœ@Ä-O¡â<ãZš¦fmÒlH„„€„R€§ˆa|wêQÔ@q%0k?!.y«{§Õu€º¾\n`Îrþtï ¢mÖžŠï;>v#ôˆáüÙ®¯>z dwÏØ0ÞìTxw»ä
+ON;@)ä/€a†.øî\ïEœÁs¯*­7J=¿ij‘˜ní"bO0Ÿ¶„ÊIµ\|^:E!R³Uª”Öj Ò¹CDPóÊ-@Q`¢
+$Pº
+`ÕŒ<ˆ?^­žÌkÏ“êô´{sÖ?ÞÜ
MmE%@Pïõ·ži@¬ÎÂÞ·¯ØZmWÍ6ëðéÎ.·A‘@VʺzìAò?•†Т/]´zJD.Ñ¥¤¸J±ù›¤ßÝOq+j5Ä'bDÏ5êŸçËçœ:+Vl³11V"f;¿Ùºðûa7ˆª‡ß@ƒ1›"1+J73¼5Öl¼?ûlcNözT;9ìV,ýÅ£æºeUL>¨êû`îÊ:�zªV·ßMo`¹\ÉÑ´>9:ÿ]Zî1`@èÛ9Nµ¢'Mš%e¡ÓBgZJþ%l�¢@*iË/¿°ÌãþK듐†(Š”æZÊ(õù|+cGSÓ+a£U"Ï0Ïy¹”¡±VPUO€þ«Ü£P¥�àyÕÎÛ*\îÚzéûß»==;yCPí‡n߬m^¥ŠEª*°"q·×ùLaÔ­ª–^ÿÉá]„ðð½Íï¬<ÿZÎ&†Ä:è¹ñî”ÀM˜aÁ·ŠH‘DE¨/‘„�)ËðG6�Òpd@TÏ´4ýÎöÓ¨Q­èE *²�ÈP>Æœ¼X{¤¹TŽÈˆ8†1Á/¬D MÙ¹
ào|Õ8ҁi	 ¨�FëN vkn¤“³úÚþæd§QGó•ñ‹ãéžÑùtñc:•½¶\Þ˜L؉»ö¨ŠÕî¯õ3½ËøÙ“—Ï®êD¿žðÉ-Æp¨˜û)&æE(a±-„b‘“&œ‘qyPã9º†LDŽj‹D3_ E8¨>Wra]å‘y<SÎQ>hÁuÖö}Ë‘âÅŒª!�©	•Ë1‚퍯Ofg—–U=	œ,^‘
+�åÓ]ƒÛÀh»•qkÏ€*Õˤ=?Þ\=kŸ"ð ¾ëg‚ِe¸ÿ3‹·:îgNÈЄ‹à$DBÍYˆËnÌÍñK0qIJM/C~.ß+™¨	¹Ùà	‹t’¢Ô¸ë)œíþêü5¬Œ'’@Ñ<‹ƒ ­õbnÁ,ûÝi˜?;Ý©�À[ÃzB³Á¤\rç±®lµµÙ˜´õUðŠÎÝ{ø´Gœ4ý¸ÈAÕ9×.UQ´$gñQÔ­óÉW觀‰ÀBÛ=dQZ¸*ëàÔöˆ…aNʍ Jü{Ñ’X
+ë>Þÿ-Úâ²ÅÎiJM\TMH°D+ÊAž†°s÷…†BìªD÷3QµØÑd<Y,§ºfÌ0_.Ç
+¤ÁVÇ—ûê�!Hj©k{4•¥æRkÒ`$`ß’»÷³'—ãñ{•?>#Ð×Þ«çH˜Œ®%	`«E`PB¤¾K„&	¥#Mó
+¤ã±
+A,{ãœWIb$.s“ÔIˆ7D2E´|šÚªˆñ[pTL3âtŽyÇ1£&o°õ
+lJƒ6¦mÐŽÎ×#qÎVÄž/ö¬rð#z¦>h ò#U}ç,3x`ê…dµ<wÎ=äwg“9�õWÁ†J}ç¬\õÀ@’ëjTL¸Å\@zJQ¢¥h¥„($�R\!WeÉÔQ2‚ˆ\RI2ÿ‚"¦¦Ôù å„”™¤³9C½(
qLÎh
+JM4)q'<ˆº[w'Dc
Á‡ë^˜ÔJ½s~1èNftÞZZoD¬àtñ°iêDSU…àVnfJýÑÑñátçS©²x/­€Ÿ%%PˆGZá9eŸ_Í|ùÁt7‚ÜzRŒ)NCCȧ^Á‰t>gD¦Zø,*Ih";~¤Ö
+ÅD"6U%&,2¼±0@2&%
+–VoŽÚ©’0ˆ¤¶:…`/76Œž­‰ôâ¬ÙèdÒžê¦ÚÙ·ÿ´º9j,
+’�•»z¸ª-�¸ãžoÝ$F$Äàt½	8Œ+º�RA¤‚€ÌÓ£Takæ{çWlK' 8*RA!n#-
+”4šFàaÔQ,,­ŠEKµ7,t4|Òœs|t”A-·%õ_�7oŸ^#2,a0V•ú�P¯;š˜#Þo.­W«­ß¬«êâóé®5%¦3ªJk‚ëîS¿ÏZLhÁƒŠ^­AA¬
]œPMÇN™=g"U^JÈÌ©5TŽ˜²IӍg"¡€× ³3±p‘S+mŠÏG’Š>¯²¤�¹¹ªZ¸Ç�Eµ$í˜G‡ €<œ|¯èÑ‹ˆL*°8¦v†¦c³
+~d% w]XZdu>Ú7wšÈ2|UEP‚ µ¤�Ú-°‚A_ó48Fq¾4Ì¡>Z g5’ç‡W¥òÍ<!Eȃ,$HÝiŒkL²\…cU ù›ò¦$Y%Ž¢Üb>—KµO)ÕÀ‚$B4±«­¨’.@�“]“( Ž~)†QÄ»�IÌiÅN¸–¼w-¬>ہv½¯wgSEP2ªÈªPD‰™HV{›JÙL*¯*Þ
Vì½Ør¢KbÁÔB€Ï“{ÁBõ	8,í6#­a¬%K|(ðòúÈD)]|,ÔåøõÖ;+Æ×n×ÿ¨«{M1…çdVE YlÏÜ{Ëv}O:D!L9«åÈ6°D­yý4ìIØ´æ`þ`}³A ¢ÔÕЂ6ªnsãd¹§Èúz$‚a³n•#²ÍúÄ&LZ*	P·•'I±ôåÒôE$J¬	¦[4KÍc¤»¦Zeø²`üÓC	Ó3’VW³y>ͶKݺ2ùŸp�ÐTЁ=è¢ÑaeëïðîÅùy”¾1 ‹WL@×j±+VOê–csA:qÏj:”#ž4MÅ&özUЀª´‹BO{›Å\…ׄB�ÙlºŽ#ãÁŒ>n‡O÷g{[ÀQ*¼¤ä˜´'J9cë"”F²…_–ÿ¢çùRM실ãLel¸

SM¹~ŒCUi@$Ý´�Ͷƒ•™}Öí$ñPÅ’ˆ²Aõç#¨H”ä²’O€éìxçÖáÓîú.à’f@"!c@Ô¯t<íñÈ!õ­t}ßZ¼¢¡q¿ðŽˆ¨©ÜV¾$!,œª$µL�¿Óˆ)‚4žÃ¼FY
MŸ—'@ ÔŸïÑª%´–×o¯vY;‰3‰ÀÆSO4O–A±¼Gc×óy…¾€€„ JŠdëe=5ÎEl¯B§çT¿ÚÔs£L *C$æ…Œß#x’i+$˜I%€vvífí33†À§+L·¡¤4,‡¿@ÉØš¸l%‰HĪølN‹S4Âöj¥j½ ¸r„¦rDn¥¼[˜â‘“¢¦¤1…1V>è�©‚•Œ]¯ˆ@FÆ
+
+Ou£º¹ìÏ[qõÛ÷óŠhÀU¦rD Þ;®ýªµèŒŽ ˆ`ÔSÁyíëX<1‰8¹¢ì@JæÒŽŽ´^(=G¤XÛEcÜôÊ´¸œi¿¦ÝŸå›3<‡ï2Ñ)Éb3‘Ýì#rA5½.D`oò%À´£‚&º¦{*µ"Õo`F+첂A‘hp¡BãK²‘<T`º�n¼»>ÆV¬Ñÿ=ÞÆœ4c^œË:T[A¬•>H׊„IÅI„	äÛº°¨²n=
¡CcË).¬F4À€Ë«œ„Nh(5ó>/xgÂV¹ImL(<‚BÄH²¤‰f¢˜Æ%�K#‘F7ó<š•T×æÀè›@4týÈÿ2"BòÎŽ$˜½oãƒÎ‚!J,šÀhÝ„õéÙœ[©m§*jéú Þ/[d Zj
+™ë‰;†MÌ©1™Â¶bNs10fôha€§CbHÄôVË¿[†æuBô*ª¨R*|4¶ô¤˜ð¦¹wž¹n‰åE¸A.r¶ë)Œ‘
¤³#o›U¨L x¢1V
+jÁƒiœzß;h¦_»ùø8ìŒlmP¢×&£¨*z©IðK`$
+D‘ÐuýÊC@ã|d¦"AebWSs?Ýë‚¥!C%(ŸZ0¹Ô—1ݺC:¥ôése¸m˜	ÅŸ#†Ú¸¸±Ï¦²…Jd‚èÏYì’A
+ÕÄ”	!?ò—yøÕnÕê¤Þô ¢
+°�è\ö*rž'Ç;ÕèÝw®žÞ»1¯Ñ;OgàAAÀ·O.o5ä{Â:µHBè{ç„LÝ:0(Vƒ"ñ€Ä1RÊ6Y-­£*xŽÁ½$=_’ÚKÀÄð•çó8ŒuE^7ÕìãÖVgÓ›ÅÙJAü—F´¦#bëK“WVyŒ2ÕͼAh§Ð		r”Šj˜Œœ¸	¡ªÓVæÕ_YªÑí‹®÷§?"*^Z\á̐¨"=š µÐv.ÔŒÆÊ@—4YÃ2nmAÀ¢(W>ož
"ÅÕÊù P)tb†ùMHK;IžW;R@ÍäJG`É3g³\¶ñImŒôÖ¹ñ¯°õÈMÀ?Ä€µ!éĤªWd('‰æŽëÊn„-Gï|¥?ñ×y2·Aœ3õê»ÐÊ¢Ÿ3I =MÉT‚¢¬�Ök9 c¯V	4¥š“Þ¤ZYŒœ(þI",oy"…fê
+å±Ü²•Pª»,~+Ðüg¹„NInß·qÄÛCu3ü¶îÊ\ªæ˜(ˆwa$Q“iЯàÙúÙîضýJC÷Ý//׫qÓ©tž0‚¨kUzÍ)ï1º™À÷<OáÌ{‡J¶¬ÐëDè:ðœÅá²àoååxQÔP²»tÄUÄŒ€º¸ÏUsÅÒ¥z®¢'Í Õ0ã5C;„2ÿ<1“Pò§,ÛÝ—Ž¤dåBI)Ž•Yú †‡¤ßFOŠt²Ów~}%¯½s²c¿ãf­Õq- Á0JCt­Lkƒa
ÎÓùËj^„ÞŠ˜6%æÓÃèVšd¯sºœ<ð‰´à™ÒTC)6¡‡h%9P—’Jސ0ä¹ä£ôÊBJKÁ#{¼,—7^•ÍÒ_ÌÕI:jK’†81™6¬N¼2ÇTŸ¼ät¼šér
+β~éÉ™V¶_Ìš°Bß
+±»®Åƒë®
Áö¾nj×Wž–k>“˧֬ý½Ce âÛÁÅqéÔÆQJÜMqcÏYž1JTmaÁ5r0²bs„kêG«bfTeŸâº>2p§¤ Es±Dš,RRŒôò ü“]ìÞÄé¸ßse¤]""᥽µ"Ô“U75Ý£öZ½êü§¶ïåê˜ßš®Ö‚ ‡¦a”u¿~ٍÎ{¥‰¬„
95í¦ö2®+Tݬü�©f*hFŽ¨ý”"ÅU/øÁ„•�̨f‘8þÌ4Í|nn…•ÈÉÌŽa¼Ü\Ôå‰x$Çjd4—Ó±ÈÜ€è7’¸vÅà&n„„PãD÷W¡Ð$óæl=	½_s‚«™6XŸ-kC½†Ëޏo\ëWk€ $hHD–RëâŠfp|(ãYôMÝuSk늃‚ëÛÆ”¼&™¤|ØǺ)ªÅ	@ÁBc÷2infR,S¬,xIJiW”Ds”ŠÔH¿ ¨nA½p»	†&Þ[ù"äœZ¶Û¤BL”P
+È‚€¤;Ç—³JÛ£_ŒF*³Æ¿îu*Ktk7ºqجú¤ˆ¬�k£«ãÕÌLŸÞà¸whm³´¾™j¤„¡wB8ÌL“þ¢�%hþ¡!�F/ÈD½Úî¨kd§¦µ§|šæ¬"—ž€’»A¹ÕYôÎ%ohÀ¼¬’ÚÙÛì»<‰Ïš¼¼Û|ŒÄxËI}Å‚Šd„†ðœ´—q,Þ\<[Y(Ö¨8¢¾ÅMï]w8©ëUY%kŒt¶?_V\X4–"3î@kd"ÔÐ9@Äd¶G§ˆ„õ_$•xy+æ-éÆ…A“	4—Iq·0‘e¸Ô1iL[pã’ÝPòôœòh!‡ñr£”¾UÂG—?Ûzi†Bh=P
†áB¡Dœu¾nŏªÀ}ï{§«›ÑõÆÒ9T
Jb+Þtv¹Ï*¹v쬂’
 ®6ÍBŒG$PöÒr\‡<ï$Æx®‰–=”0Vš X¤°IŠÈCÌ#]ÈmÑÄ+/”Ù¼÷Tåy' ¡Ð¡ÜK*ãs 2ÍÁ|U“d¦>ßÓ_Ëú>J#*R.�D"ÍŠBÕ8¯ruR‡zµ=Óªk=¸…v0Ú¹óÚa¸Z·‚€‡ºaƒ+'ٝŠÌ›“[ªJ.àº7¤‚ „**­’jÑ&2‘#RðÈY+C·{4%qJ¬XEÊöd±QœéXù©œ©i¬@¢´˜–uΐ_UŠ/ÍúÿYØ©´SE5;Ù -‡¾~ª1‰¢±†H‡²6h@ŒøøÀôâÖ+ëÕ5¶»Zx…~åóë‡è;­ÇÖèBC˜¨ÑÉG·IhPè}͉!†E�Õ’<clšŠ¹?2´`ca¤Ä�¥˜ E_Q•|”Fh€J\™íF¢bòñÎúl„Es=ÆëXÆjsF?ÕO5%V”õ.}P3P‡(Ár`ð˜Ãa›úñG!´UµûJ³^¯zÔÓhdíÁ]+¾œ
+šÆÒê¢íì5Øïo&ÃlÀ;3¨¬•ávË€¨ˆ‘‡‰Ãv“È„‡”ÒŨ™Ÿ“]o‰|hRÇ'6Ñh6DIºÁe›•°TÂ
î„aׄ„VIÙ·*„Ô+H™Ga9‘ù_óo2Þz˜C*EÕ}�¤‚?ÖԦĠÒZ³z„ˆ®záàâÜ„¶åf2‚ɍÃxßzU–�`›ÆâriF»KÌ~ŒÇ3’ÚùࡪÖj»¡Rm@TBÄU@AŽ˜H:¶…²ÖÝðЄ@ÊYFR×BÁ˜oB�ˆv½ù©—SÚÅÛS½\OjÔƒ„çC/–ô#šÜ¦]PºwåÝRY	€4$¡•ED5#PˆqMUHƒReÕÒÉR=„ùätÙ’n¤©kuP_¿5±*ˍÖ�B£‰A½ì'M@b°™žÞ¤Ð_µ³
+:E–IÅ·˜�ER9¶í ª Q[J9¯s\«-J~ˆ››²ÆLÉú²qBfÚcÎ4¶«é”뀍Äl/‘ÑÂÛðTȼG($@~¤ki˜RqcT‘X=2T`
+*Ów«Æ·Í£®†ÍhÜyeïÑ`¿æ0ºs·›ÕúrF{PMÆû6
#x0Ôìß_Õž]»‚Y<	0I
‰nwxŸs'â´æ*ó¶.Tn-v¼‚©žÃ(ã,w…šq´*I>°Ld‹®ÑePP1DŠs–E–$í[.ÊRæXC齍ځ˜¥zUCƒbHû64ÆÙe½‹:†Î¨wJºaö“·ÞâÑ(ðåy[aëX¡šNGt¶ Ë È
+»OÖÐQèÂxb<4
©(¨ºV¡K‰Oêâ H|*ñ99=Ý(¥(œ‹ȃ—ØàÉ%Z¡øä)£æü€R:RÎLÈœbÍWVÿ×iÅ{„ˆÛF‚¨–4Äxb
APàA‰š˜<[ råi¬8o6Wq4³¸ìœX�|åÍI··dqîu¹Xóœí|>2ýùz\c kTHdz³€ ®Úm µôN-‚Š¬:³MœÎøMÍ3G‘çÄò†4õJâQA¹‰šÐ[Äí\³pœoqCæ2äiX”*Æ‚ (©Äón«C´3 >=—"EO¾üyÅ2°X¯€ŒÁwëekšÊ6cèœ*¬Ï•¨óÚ÷½(TÕÞË•Ì÷±ß¯Úõ•b#£ýý1º«+”AÄRÉ^T$웩õ‹nÂ";{Ù2[Êmˆ„Á*ÕUÔW5”MÄe(‹—B¬äÏÙƒJbžòÜŽL¹„æÓ+÷ëÓ+R‹“¤pr·ù5ùÌ1šÊ	²xºÄæ‚©‚¢º~¹
+È;óŠ,ö¢€ú•ì¨s4DÆ4³¹s»Uߝœ]®œ`UÛéáÜ¢[¬‡@l$(Œ/;C=ŽjÞ,¤²ˆ0êªÕÀºÕ'Êø•<‚Ò¹ä[“c¡nqpt»ü*™jAòn§µ3å(+_jë|¸nÓƒT€T‹¢A©Òù¯¤	Cšš$y#”N5¨�† ÍÔ4FÅ»Ž©rÚ-ú®ƒÃ½¾;bSC5™Næó*Èúä´bLÕŒjÂvÕ1V†@”k�0®žXØÈldÛ€‰®Ö0PÀ‘R¥…ÏÝ–”ŽFÁøHú”[.ò š7ìö¬)v­¹÷#ñ¤*îç÷*nà(`C¦(žåª&ù�‹‚>Ÿ–ÈoØ›*4¤âÄÔB�Ud5�‹
ø‰i[®+3›é¦ss8qŸv¾C¬šzÔÔúõ2Œ3"x	ž*jfS°Vų%�¹Ü�†Xf—„á~^œ+ !°8¢¦œc“¿–¹9/‰Ù°Ò%*ñ:>41ç$¦¥˜Ç¼Ç³X­Ñ¡k…òÜ‘?b$ñ³"o†O€‚:/†� °u ´^íÒ„W8®LÝ,Ö£kãÑÁœÝæ´ß
‹iF»ãÙÄøv½†¦jâµuÞÕc±óQl"B ]x¦0HÝ"a:ÕBÚÕeßd%Ëoãºæ"Câ�Ê”U#¢I¶UšR“%îWLÇi!j�G™×ü¾…[.®˜JʇÉ-ÃB‹3£Q³Ãˆ*B€Uô´¡óÐ=5<-qf*蝏'0½u
cwr¼Ñf\×õd>¯Q»
Ô£‰-™ ª‚:¬@úµØÊlĨX
Ë	L"C)Œ·Ûê¸Ý¢)õj(W"Œ1aŠò@ÉfsŸaMž"WäWí!?(ÿÄ|2
<7�2}N"¥È–/r©÷‡u-}…*BL«8ǦîNš34&,—¾mf×oߺ±£>tGïû�H†Ä4
‰[´ÂÉX£âXû³êCߣ!õ�A@µ=	äû5EŤù.©Ô%ØÚç°
7…lÀ1§+I‹”82¬‡Æb¶=矷Ñ,OHQš@ÉÙM¹àÉÿ:ŸÂ¦”™”W:Õb«™:µ(Ù\rðDBL\¯6/¾‚'Î9ž4û·_¼5®PÝñ§O¼aD¨vö§ãú¶55©ˆ5£ÉÕÍÍ„ƒbH= ZF¤þ2 æÒ)U»;s%X#hú.UJY‡Ÿ"Ñ¢ìèmÞ<UÊyb
+™³»Ë3_i[YWâ]Ð|ñgÆðD
Ü»-]iUßy0œAï�ŒAd0àw§´sµi•Æ;ÕøÕÛ‡c‹auôñC˜tjL5šLg#ë»Ö«ÖlAÕ{TqôèÖšk	"ŒªÐ@X­#÷LbÒœ˜û¨]#’QÒš`ÑR‘ÂÏ.ÓÑõüA‡9™Ûæ
+¡ÆlZ’¼BñnKË®©mUšÞÝä’ ¸ŠîÏ&¨1¬LAA‚÷ ˜ZK*GrÙ‡º¢zÒàø¯Lç5ª[}|ÏNWžêf<7“QX·­wÒ°µ†@ƒ÷‚Ú“Sfr} ý°b¾B ²¸Hý+lö´ÐUKº€‰ò	ZÙ«¦,~IcK¾]Ö�±°�	Ò,%Þ å„…ÓKøÖÄcV0ùØKí§”So±î1´‘¿ªI£+2†TD0õ—~…•3­aöîÑ¸2pùàÓ£=x„;Ÿ§cj[×k0
e$ “™­o!«4€Í2é	Xfüy§Á¬!JSÚÉ¡®Œ¬·³…ø²r�j\ÄÂvËC¬²v[üíŒ(¿ÛF"Xˆ1
+TŠž´fO®ç—¶©ql”™
0ŠzT
ÙA$tô說É6£i%‡¯^7¦1íýž¹zuìæn2ÞÙOvªÞs×û~\! ˆï{Qn8À­«:2!2*ZKÚµ¢Š¢º%˜Nÿ´ÐÉ•˜þ…Šf		(åÚ
+§>µUs6’§¿¨EÝ[Kv"£‚Q×£D‡k±h{$Æœ,IW(/t:a""0%bŸªx $E=ï÷v*ÆñtgçúLJ¸xøy?[^.\ƒÕto2›³ë4lú>ŒØ
+ø>ª“ÞWk´AY‡ü�B+q†—¨'¥x+Rã’5²Îp8ä`rEÉžý[Yaš>·£·ó KÉi¹1BI$Ýùå"Çåͺ˜Z²,³‡	)A½ <  Õ�ÄÖ<yé:›z²¿GGë¹{t²ÐŠ›f4išùÈ'ýʃm˜IU‚’ú€ÖèÕ¾s"lIû~€Ú̺Œ‚®T°´yóÄ~„
+YCIG¢w5&,PÜ|AËÒd¶vY[Mù_|õs3HÈÜLP,A¨š«úl“�jò¬4[ÑÓ}‡€jj
À±·…ëcVê.š‰ÅÞTÕü`®1G_®góéÄHð½[­$$bU‚àÁ ¢=Ú	¢ÊLaå,ªÛˆ÷©A¯¤¹“5Ó•Ä¶²Ü2ÅØÙ,Åž"
{qZ˜ûùÉ\ð¸¸u4Jz¯aè»Wôœ…µîÔªQ,@ôrJgï(#‰Ð[ƒ‚*ƒà×PâP%Ô‘®žîÔç›ñ»ÍþÈ»U·xøèlM†F;³ÝÙdd0„°<º"œWÆp*@Iiçûê!€j»²ˆ Úµ:óÓfNm¶¸$J;JZ‰X–(}ômB	Bé¬Ê,qÜšg™ªç©XšÕd3$8b3<ló_ó{çSTA
�m­³–©‘­A	È”<)2¨H•Œ©V#ÕáwîîZ«Ýòéã§ç+­°©FÍtwg6¡†®]û±¥ySBð+Ó:AT˜»Å8 ”M7UÑ®GÊ!¡€âà)­Å{©ôâºòj~·9Eύcp;«A)[¹¬Ž"H©æ!–0¨ThšÆF
+š4œÂUZdÊ7–5ê
!ƒpUæ�Ô÷Þ  9øê
ç®ÝœŽ¹©ûåÙ§oL3ŸïL«f:"/›eۍFj£¡Whm3Õ6H¨¦M ©lØX£ˆàׁ²°I©hK®%j¤ÅIƒ«Ò)±JiYèCE®.þ墏a	²uøÆ'd�è)åxqŠ,«eT«©Wk’'~!ʤä¯ØS5"b…А[I@1töÚ®1¶Â@§G÷žœ­•UÈ6“f´sm:o ÷Ú:5`«jbT%ˆ’‘°1u¼õÕA�jx½i‰ÑoR½]@(n‹‰²¦ÆL-×6Mž_±ÆÍBJ<ð\Îi–dÕí¾Iéo£È 5Êè¤LËòï(ªP<²1sj*ê’ çAm}@d�$¦U‘AT|]£¿Qá«';{»w§ÇOžœýS¬G“ÙÎl<­Q}ïJµjÌ`Ÿ@F@ÂZ(LN}@æÍy?e$·å€eCaêÀoWÅ¡
µ,	eLLWA-ºôš§ãe0CDñRÊsÕÉÖ¶F¤ôšt0FäJ\pRU.£‚Üz6�¨EZ•3xbLM^	DˆDô=L¬°á¾WXcwÚ^-®6mê	ÅØñ|go4ß›)8ׯ»I£X‘14èžIpÄê{‹Óã�޺ŕ1֐ø®cËÈB[*Éñ‹Ê¹WóyŸ,:ªÑÒ­ðŒz¦p=“»nNWH5Lh&–²èLyŠ+ñòæïhKbor¨¢¹fÉzbˆâ‘É2@ /ƒl©†¶"zTv—n³è;ñCçÏ6ӝéd¶³¿S“¸Î·KçaLLŒª¾ï¼•¾gcT¨æ®^<Žèœ5aṈÚÖõI_GoL=g‰ýƒr$ebq΀b©qw©ÌÔäG…)Ï/ô¶‰¦
+FÊL¡WZhHF.ÖϽCNZ <èìÏ,ai—\ ±!Uñ¸¹B	*m›€˜¬a¶ÖÑà…ŒI¡P‚RÑ
+€®*VÀ,Š5$Ýšåq·­ïƒ¥ù<ü*>ò³e&ú<˜+ݸå…y¹Jz¾ÕâÿåPþÓr¼ýËG)ßßøÿ'/‚<»tŠž����IEND®B`‚
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-2.jpg b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ace07d078a00bee3b0ab02f7f077e39c23f2aa03
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-2.jpg
@@ -0,0 +1,19 @@
+ÿØÿà�JFIF��H�H��ÿÛ�C�
+
+
+		
+%# , #&')*)-0-(0%()(ÿÛ�C
+
+
+
+(((((((((((((((((((((((((((((((((((((((((((((((((((ÿÀ��<�P"�ÿÄ��������������ÿÄ�8�������!1AQaq"¡#2B‘Á4±ÑCb’¢áðñÿÄ��������������ÿÄ�#����������!1"A4a±ÿÚ���?�óE
|ôU‹SaÁÉz¢º>4—™~ÓL…S ×A:!àÛb\î%g8§ˆs¹Ð¬TÇfõÙ`8SïWÇ‚¾Âˆîû’ý�öñÕ<·» utF# Çï¦]—‚iëB¹§DOoÄuµ÷³[Û¸”±PJƒùOžÿ�]$¶ Ô¢k±¶"Ê¢÷{¢‰'”C=;l“lùcSî<DÑÙᩧˆwÒã·ç©QÙç[L‹6B«©ß§\ú±Ðõ=žªºC
,Q2·#*ç•Œ½dý@qI�ç2º^%ºÈ˜
+<•ûk	Äw$9iÕÇ“ ýµ&ï—;`穦!OLê–X🇯¦Ž¢¶ð"ÎnC²aÎý0·SɪI0$ž¸Ç–¨$¸×È9š¦B‘ƹI#Éq»e<£Ë:ÕrHAŒµ¤­DËÜÎ|ÈàgGüLô´ÝŒTU:*œgmÿ�çé¨2Zèiî͘‚Æã(9ƒ*g>#á:´›ˆ!1”r¯O‡p1í¶±ÉªfŒ¶AÌwÙf§¶Ðµr„Î˶‰ä’–Z@ÑÈŽÛ:­·Ûª©á–¤BÏ9I\·ËQ«bÇMC¦ ÜÀ±ôë©âYqœaq†Õ~¯¢*1ï@ÆÄý¶ùjϳzheŽyécbe ãŸûë¡.جòZ¦¡¨iÌÒ¸0± ¶Hé·Ž¯{?5ôöJHéä‘3Ï#rà¹$îN@ÛDa”t´êq,pFí
K¯>2Å°3¶2zŸA¥p¤Ñ×@iÑDU.¨
+ôÄ�}·Óx³ÉPµ5˜îä< …aÿ�™Ö¼mnÚó‡#âV^ ë(ýVêC”óuâÝ5¦çQCUËÞÂü¤©È>Dz¾¡s!‡Ps¢N;­kím|ºÆ…cs&µV¶ÁËI:áˆÈõÕ%92‰‡!|F"p]0ŽGjªé¥�”ûÅUφF?}Çc ­áÉïtQ÷5Tj
+ ÿ�Æ „õ¾¾šàUòû§†Þ:Ÿc¥¬–ÍÄôQs’›âøb�÷Ÿê]™…¶þÊ<UTÈQ.-íÐS×ÄÎÐÌ …èqæ>šÚâªâ­':u�0ÄM
+pÞE¢î&žNDgf_oN¿¡Ôû„—ÅÜZíTïGÞ©if}ˆQ±�‡¿].×")Ì¢¤‘˜Úµ|Ct	´”t;»¯æmº}|Έ8æ)Yi+bhÄnÁAÜdÆ|ÆŒÒÏaáʆ±ãžd<í/9fÇR?sôÒK^®Ÿ‰%¹ÑBô—S	\rì tt5Î+¿(‘×�x1klžþLr\YMi–
+vu—pA< ã©zXæÝjšjæ'Ÿ$.1ì�Ч_/u–xkÖ–3àºn2GQ©7	.yàzùTF¤rD3ç¦
lº}BÖÅøDçÒÉMw”¸åïþôžº£Æš}¡[ymQ$†QÈHß ü·¦—Fž7 ê`ôÈ—ŒX@Ó‚Hê3¢~¿Š÷Q>A€’ùJàÿ�¹¿]
+© cÈ軳¿ŠöäøS6?ÔºCÔ¿å
+tâI¶pÝ:ÜêfŠR²’A°-·‡±ã\®UÏAS$‰?v¼­2žgåêFq¹;ãç¢ö‘¡¢¬tÀnwož”·º‰
zDNVU.çÄœêw
+±}ŒÖl.±²ÃÔ~æ$®–RVš0¶ï#nÞ¸Æÿ�3®7;|7\ô•
+‘R+x‘ÖiöìK¯¶utEdnö9x4sOc« f’|Çâ_¦~GF2TP<[o§Š ¬Ë…† °•zxé"Õ2Ò]䨅±,S—Sëͦggô‰5–­žEtIpŠØ]ˆ#؝0On«ÆUUwo¡1ÚÒw¶™ÙGÁ.~l’Á
+œéÁÛDÏ
%$œG<®òyžP¸ßÒ—ªå¢Û¶ˆ§‰ÿÙ
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.gif b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.gif
new file mode 100644
index 0000000000000000000000000000000000000000..432990b832d877e8dcdd9197e39184be16900e50
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.gif
@@ -0,0 +1,2 @@
+GIF89a(��¢�����ÿ���ÿÿ��ÿÿ�ÿÿÿ������!ù���,����(���|8ºþ0ʪ
lÍÍݵ™ÒÔ‡…d
+˜gp,ÏEù…
Tàl
±¸Ïä{�Qºá§è1“¡žíò|ì¢Ä©…Àí^Þ®`L0er˜^§Çç·`ýÕÑåñ7½ÆGä{vnoyiV4‰0zk*$€Ž‘a“”–—r	�;
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.jpg b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..de4eace04ecaea499e70812df0797318d700ad9f
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.jpg
@@ -0,0 +1,10 @@
+ÿØÿà�JFIF��H�H��ÿÛ�C�ÿÛ�CÿÀ���(�ÿÄ���������������	�
+ÿÄ�1��	�������	�
+x·6789uwµ¶ÿÄ��������������	�
+ÿÄ�3���������	8w·5u´¶
+67vxµÿÚ���?�BsOàä³üfüÿ�,«Òҁÿ�\CÊã¿õÑõ·›°ùY¹_ “íԏ ‚ĬJ'ºˆ¢àf)Šàd8E³Èvû#[ënz]w.Ïm»ˆt6l³¢â-é=²’ÙO·¥0G7!ÅSŽB†@€$ý›Mš mIÝÝÓ¸)L¥À¦Ð´¤Çç&V¨"U+F^`Z3p°0Cï0ÀሄŠÛ°O®Ê|ïN©Ó¼A•í– ¾j©TÕ{ÓsQMÏLG§N{~F¬NW#BaE„¤ø§)Pƨ�’Oc°Þ֍8r>'÷ŸÆ6!Ãâ2)½nš]Ûˆ²¶f^ÒgQ§ôúÁËÍõW–8Î/R–@vÍá‚~§vÖéöÖ¸éÝš&vvªT·»XV_fgÇ´ÎîÏ€{¨ïSèòßIÏ{Š5,ÏÏžJáþ²-·Åœr^rM9Ñë<ŒÉ³m{ΣJë­Ûòkƒ\R°µfaàÌ·ËãÜóêLúçžZf» d¨=Ež£¥A+ŒHó´àYÈIÈZp)@bVm¼:Híã4ÔYD5…)pQjÓ®ÑeòèŠöæÖçõQÃÉ‘¥nH¸K’759˜iE¶:»‘Š\HwL�j@n'�ðˆ€€%˜`Óo7
¹h[œê
+Ù(ihi”-‰(O-DÒ…Än(ZY
8’™Þß“	“?$f
YgâyjB$À,u¤¬¿òwiÿ�-0OÒæ·HFº{«ÕJ…ûµß¬Å\§Ìe~ú×U?}>ôÃq¾ÃcÛ	½×û>	Ú¬{C¹GƒY[¹ó!ý­ÄÙ†^‹HŠ:IêaÝ™"ÆtŠ$Í‘3—’l°åë*†k»ë‰“\]Ž=Ô=k4‚µÒ¶Gt|J›VØë:b@½6¡$d…Dg¥<Ò³“J‚»»É4³áÐæ¡_uÕËà3ˆœŠ©îùDBK}AÁéÂMs;Ó2Ö×4z¤1ËSjQ)<B5)Õߘœò1ðšÛKvQn$ÑÔÈÀ7#¶_ö$õ"ˆMeâ†)Uäæíñ!•U¨Û%e
TJ�Oqªñ.`؉õÔz‘/YŠÛõ0_^[¨LLëwc˜?ÍEVØŠtG
+ƒc?u./Œ:x5ªT3ŠCŠfð;£\ôEd¨9*]P5™G6Ó\gôví1§2Ôð×·(’èÒ§5-±Ç@Ô±á…Ðô'“¶º �VÌ…Fœ
+ÂQ�³‚IŠ�cÅîÊn2Ð=½}•¹?…Ü>ì÷ã´Ñ$¡r®%ÛN×ïü¹Wá¾\šDÚ¶ý‡‘y©j÷MŒ¶ÜGÿ�®Ð»·÷}üãàÚøÛŸœä³TÍå~kòïâò
+7Ï;8Ý0Þõ܏‹÷´i¶ŽD£t£}LÞ\¯çÂ~âù—ÅHâa$F¸ç:à\ƒ?ÆEF5»¿dËÞõÚm¬Í·Mž¿QZ|Zü/ÂÉ,3ÞËU¥_tø‡ìÒôBnr™»K†ÆÔ¦E¬q¢ËúÎ>VT²ý)c†hù%4ïâÔ•Qr¬ÂðíÚË힦1Á,]Aº’;A[%²"aUVGWÚ…QW¿ÉÙݍQ%“Ígkиcaˆ€Ö2Ó¤Lœ	W–ÚIÎj¬-ê‘C¨¼-Î-Œ¨Š5/”-PÞ¥kêñœà©©•¸Õ¸ \à°!13RB0,£‚›Sˆ@+Fp‡Æ"ÜCï
“GLÖÄ¿¶6ÚLF‹a¼›À"ã›z}=)$–±A’lù½!…Àԝ4dØùy¦L5U‰SY£„Þ•UzRŠ±PígÏê}5‚Ô9Ëÿ�›î5§|˜ÍbírI3ÆÔÇW›Y[w'§%«vövæö´yÚvôIRQ‰³»>·I4Þe${§zשªBöî³–ÎSjÝ]Ö/^§N’LBB3Õži¹)ˆ%9]Ý„”Ya0Ò?ŸÓc¯‘Û±ú
+þ듽§|ÓÛOûFþâÇ:w¿‚<þTáúCºÇG­Àt6u:N§S©Ñ–×û²Ýý‰#úòýmæÓþVm«èûuèl}ümçóW՝×ÿÙ
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.png b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.png
new file mode 100644
index 0000000000000000000000000000000000000000..39c041927e1d7e1ee2b7904763c78d7c9d5caaab
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d6/files/core/tests/fixtures/files/image-test.png
@@ -0,0 +1,4 @@
+‰PNG
+
+���
IHDR���(������ÿF»���DIDATxÚíÎ1
+�@ÄÀýÿ§ïzÁ4‚ d%¥0yÉëÊRtÖ†ÛÒœ@7´Ø[ üx8Øpž@µyý‰¯°a„����IEND®B`‚
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/MultilingualReviewPageTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/MultilingualReviewPageTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..a47c49edf5d03704643c66b83e7831d6b1d70641
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/MultilingualReviewPageTest.php
@@ -0,0 +1,171 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d7;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\MultilingualReviewPageTestBase;
+
+// cspell:ignore Filefield Flexslider Multiupload Imagefield
+
+/**
+ * Tests migrate upgrade review page for Drupal 7 for the aggregator module.
+ *
+ * Tests with translation modules enabled.
+ *
+ * @group aggregator
+ */
+class MultilingualReviewPageTest extends MultilingualReviewPageTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+    'content_translation',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+    $this->loadFixture($this->getModulePath('migrate_drupal') . '/tests/fixtures/drupal7.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block',
+      'Block languages',
+      'Blog',
+      'Bulk Export',
+      'Chaos tools',
+      'Chaos Tools (CTools) AJAX Example',
+      'Color',
+      'Comment',
+      'Contact',
+      'Content translation',
+      'Contextual links',
+      'Custom content panes',
+      'Custom rulesets',
+      'Dashboard',
+      'Database logging',
+      'Date',
+      'Date API',
+      'Date All Day',
+      'Date Context',
+      'Date Migration',
+      'Date Popup',
+      'Date Repeat API',
+      'Date Repeat Field',
+      'Date Tools',
+      'Date Views',
+      'Email',
+      'Entity API',
+      'Entity Reference',
+      'Entity Translation',
+      'Entity feature module',
+      'Entity tokens',
+      'Field',
+      'Field SQL storage',
+      'Field UI',
+      'File',
+      'Filter',
+      'Help',
+      'Image',
+      'Internationalization',
+      'Link',
+      'List',
+      'Locale',
+      'Menu',
+      'Menu translation',
+      'Multiupload Filefield Widget',
+      'Multiupload Imagefield Widget',
+      'Node',
+      'Node Reference',
+      'Number',
+      'OpenID',
+      'Options',
+      'Overlay',
+      'PHP filter',
+      'Page manager',
+      'Path',
+      'Poll',
+      'Profile',
+      'RDF',
+      'Search',
+      'Search embedded form',
+      'Shortcut',
+      'String translation',
+      'Stylizer',
+      'Synchronize translations',
+      'System',
+      'Taxonomy translation',
+      'Taxonomy',
+      'Term Depth access',
+      'Test search node tags',
+      'Test search type',
+      'Testing',
+      'Text',
+      'Title',
+      'Toolbar',
+      'Trigger',
+      'User',
+      'User Reference',
+      'Views content panes',
+      'Views UI',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [
+      'Book',
+      'Breakpoints',
+      'Contact translation',
+      'Entity Translation Menu',
+      'Entity Translation Upgrade',
+      'Field translation',
+      // Flexslider_picture is a sub module of Picture module. Only the
+      // styles from picture are migrated.
+      'FlexSlider Picture',
+      'Forum',
+      'Multilingual content',
+      'Multilingual forum',
+      'Multilingual select',
+      'Path translation',
+      'Phone',
+      'Picture',
+      'References',
+      'References UUID',
+      'Statistics',
+      'Syslog',
+      'Telephone',
+      'Tracker',
+      'Translation redirect',
+      'Translation sets',
+      'Update manager',
+      'User mail translation',
+      'Variable',
+      'Variable admin',
+      'Variable realm',
+      'Variable store',
+      'Variable translation',
+      'Variable views',
+      'Views',
+      'migrate_status_active_test',
+    ];
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/NoMultilingualReviewPageTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/NoMultilingualReviewPageTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..316821636ea29303d35540ff3cab506bc294578f
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/NoMultilingualReviewPageTest.php
@@ -0,0 +1,179 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d7;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
+
+// cspell:ignore Filefield Multiupload Imagefield
+
+/**
+ * Tests Drupal 7 upgrade without translations for the aggregator module.
+ *
+ * The test method is provided by the MigrateUpgradeTestBase class.
+ *
+ * @group aggregator
+ */
+class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+    $this->loadFixture($this->getModulePath('migrate_drupal') . '/tests/fixtures/drupal7.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block',
+      'Bulk Export',
+      'Chaos Tools (CTools) AJAX Example',
+      'Chaos tools',
+      'Color',
+      'Comment',
+      'Contact',
+      'Custom content panes',
+      'Custom rulesets',
+      'Dashboard',
+      'Database logging',
+      'Date',
+      'Date All Day',
+      'Date Context',
+      'Date Migration',
+      'Date Popup',
+      'Date Repeat API',
+      'Date Repeat Field',
+      'Date Tools',
+      'Date Views',
+      'Email',
+      'Entity Reference',
+      'Entity feature module',
+      'Entity tokens',
+      'Field',
+      'Field SQL storage',
+      'File',
+      'Filter',
+      'Image',
+      'Link',
+      'List',
+      'Menu',
+      'Multiupload Filefield Widget',
+      'Multiupload Imagefield Widget',
+      'Node',
+      'Node Reference',
+      'Number',
+      'OpenID',
+      'Options',
+      'Overlay',
+      'Page manager',
+      'Path',
+      'Poll',
+      'Profile',
+      'RDF',
+      'Search',
+      'Search embedded form',
+      'Shortcut',
+      'Stylizer',
+      'Synchronize translations',
+      'System',
+      'Taxonomy',
+      'Term Depth access',
+      'Test search node tags',
+      'Test search type',
+      'Text',
+      'Title',
+      'User',
+      'User Reference',
+      'Views UI',
+      'Views content panes',
+      // Include modules that do not have an upgrade path and are enabled in the
+      // source database.
+      'Blog',
+      'Content translation',
+      'Contextual links',
+      'Date API',
+      'Entity API',
+      'Field UI',
+      'Help',
+      'PHP filter',
+      'Testing',
+      'Toolbar',
+      'Trigger',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getIncompletePaths() {
+    return [];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [
+      'Block languages',
+      'Book',
+      'Breakpoints',
+      'Contact translation',
+      'Entity Translation',
+      'Entity Translation Menu',
+      'Entity Translation Upgrade',
+      'Field translation',
+      'FlexSlider Picture',
+      'Forum',
+      'Internationalization',
+      'Locale',
+      'Menu translation',
+      'Multilingual content',
+      'Multilingual forum',
+      'Multilingual select',
+      'Path translation',
+      'Phone',
+      'Picture',
+      'References',
+      'References UUID',
+      'Statistics',
+      'String translation',
+      'Taxonomy translation',
+      'Telephone',
+      'Translation redirect',
+      'Translation sets',
+      'User mail translation',
+      'Variable',
+      'Variable admin',
+      'Variable realm',
+      'Variable store',
+      'Variable translation',
+      'Variable views',
+      'Views',
+      'migrate_status_active_test',
+      // These modules are in the missing path list because they are installed
+      // on the source site but they are not installed on the destination site.
+      'Syslog',
+      'Tracker',
+      'Update manager',
+    ];
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/UpgradeTest.php b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/UpgradeTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..0b7427dc0758ec19be948513c02aaf5d2358675d
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/UpgradeTest.php
@@ -0,0 +1,221 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\migrate_drupal_ui\d7;
+
+use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;
+use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeTestBase;
+
+// cspell:ignore Filefield Multiupload Imagefield
+
+/**
+ * Tests Drupal 7 upgrade using the migrate UI.
+ *
+ * The test method is provided by the MigrateUpgradeTestBase class.
+ *
+ * @group aggregator
+ */
+class UpgradeTest extends MigrateUpgradeExecuteTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+    'book',
+    'config_translation',
+    'content_translation',
+    'datetime_range',
+    'forum',
+    'language',
+    'migrate_drupal_ui',
+    'statistics',
+    'telephone',
+  ];
+
+  /**
+   * The entity storage for node.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    MigrateUpgradeTestBase::setUp();
+    $this->loadFixture($this->getModulePath('aggregator') . '/tests/fixtures/drupal7.php');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getSourceBasePath() {
+    return __DIR__ . '/files';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getEntityCounts() {
+    return [
+      'aggregator_item' => 10,
+      'aggregator_feed' => 1,
+      'block' => 25,
+      'block_content' => 1,
+      'block_content_type' => 1,
+      'comment' => 4,
+      // The 'standard' profile provides the 'comment' comment type, and the
+      // migration creates 6 comment types, one per node type.
+      'comment_type' => 9,
+      // Module 'language' comes with 'en', 'und', 'zxx'. Migration adds 'is'
+      // and 'fr'.
+      'configurable_language' => 5,
+      'contact_form' => 3,
+      'contact_message' => 0,
+      'editor' => 2,
+      'field_config' => 91,
+      'field_storage_config' => 70,
+      'file' => 3,
+      'filter_format' => 7,
+      'image_style' => 7,
+      'language_content_settings' => 24,
+      'node' => 7,
+      'node_type' => 8,
+      'rdf_mapping' => 8,
+      'search_page' => 2,
+      'shortcut' => 6,
+      'shortcut_set' => 2,
+      'action' => 21,
+      'menu' => 7,
+      'taxonomy_term' => 25,
+      'taxonomy_vocabulary' => 8,
+      'path_alias' => 8,
+      'tour' => 6,
+      'user' => 4,
+      'user_role' => 4,
+      'menu_link_content' => 11,
+      'view' => 16,
+      'date_format' => 11,
+      'entity_form_display' => 24,
+      'entity_form_mode' => 1,
+      'entity_view_display' => 37,
+      'entity_view_mode' => 14,
+      'base_field_override' => 4,
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getEntityCountsIncremental() {
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getAvailablePaths() {
+    return [
+      'Aggregator',
+      'Block languages',
+      'Block',
+      'Book',
+      'Chaos tools',
+      'Color',
+      'Comment',
+      'Contact',
+      'Content translation',
+      'Database logging',
+      'Date',
+      'Email',
+      'Entity Reference',
+      'Entity Translation',
+      'Field SQL storage',
+      'Field translation',
+      'Field',
+      'File',
+      'Filter',
+      'Forum',
+      'Image',
+      'Internationalization',
+      'Locale',
+      'Link',
+      'List',
+      'Menu',
+      'Menu translation',
+      'Multiupload Filefield Widget',
+      'Multiupload Imagefield Widget',
+      'Node',
+      'Node Reference',
+      'Number',
+      'Options',
+      'Path',
+      'Phone',
+      'RDF',
+      'Search',
+      'Shortcut',
+      'Statistics',
+      'String translation',
+      'Synchronize translations',
+      'System',
+      'Taxonomy translation',
+      'Taxonomy',
+      'Telephone',
+      'Text',
+      'Title',
+      'User',
+      'User Reference',
+      'Variable translation',
+      // Include modules that do not have an upgrade path and are enabled in the
+      // source database.
+      'Blog',
+      'Contextual links',
+      'Date API',
+      'Entity API',
+      'Field UI',
+      'Help',
+      'PHP filter',
+      'Testing',
+      'Toolbar',
+      'Trigger',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getMissingPaths() {
+    return [
+      'References',
+      'Translation sets',
+      'Variable realm',
+      'Variable store',
+      'Variable',
+      // These modules are in the missing path list because they are installed
+      // on the source site but they are not installed on the destination site.
+      'Syslog',
+      'Tracker',
+      'Update manager',
+    ];
+  }
+
+  /**
+   * Executes an 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->useTestMailCollector();
+    $this->submitForm([], 'Perform upgrade');
+    $this->assertUpgrade($this->getEntityCounts());
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/cube.jpeg b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/cube.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..652a7db77d5e3489745effa930f1a41b2d1ba69f
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/cube.jpeg
@@ -0,0 +1 @@
+********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
\ No newline at end of file
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/ds9.txt b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/ds9.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6a7e452749cf08168239c3e267a7e1d07c49ddc0
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/files/ds9.txt
@@ -0,0 +1 @@
+***
diff --git a/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/private/Babylon5.txt b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/private/Babylon5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6a7e452749cf08168239c3e267a7e1d07c49ddc0
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Functional/migrate_drupal_ui/d7/files/sites/default/private/Babylon5.txt
@@ -0,0 +1 @@
+***
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php
index 19d1272a05f384f0e19222baa4bddc0263d7762b..bd3df58e5e8e7b5464639ef90056b32bf6ee87e5 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php
@@ -3,22 +3,16 @@
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
 
 use Drupal\Tests\SchemaCheckTestTrait;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
 
 /**
  * Upgrade variables to aggregator.settings.yml.
  *
- * @group migrate_drupal_6
+ * @group aggregator
  */
 class MigrateAggregatorConfigsTest extends MigrateDrupal6TestBase {
 
   use SchemaCheckTestTrait;
 
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php
index 59479630a3e65a9d0f41a742177d9087990f8e21..be60c4cbfa760dee5387a1d7cc175b7f4a12bb6c 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php
@@ -3,20 +3,14 @@
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
 
 use Drupal\aggregator\Entity\Feed;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
 
 /**
  * Tests migration of aggregator feeds.
  *
- * @group migrate_drupal_6
+ * @group aggregator
  */
 class MigrateAggregatorFeedTest extends MigrateDrupal6TestBase {
 
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php
index 9c5be013cc4d8929677f5f36ccef702cadc97c59..b1de6ef072d686688d1f2cf1c7ca2e4c24b3dbc3 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php
@@ -3,20 +3,14 @@
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
 
 use Drupal\aggregator\Entity\Item;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
 
 /**
  * Tests migration of aggregator items.
  *
- * @group migrate_drupal_6
+ * @group aggregator
  */
 class MigrateAggregatorItemTest extends MigrateDrupal6TestBase {
 
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDependenciesTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDependenciesTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..7b3859ec034dd0eb8835d336e5376cab11fc2f35
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDependenciesTest.php
@@ -0,0 +1,32 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
+
+use Drupal\Component\Render\FormattableMarkup;
+use Drupal\migrate\MigrateExecutable;
+
+/**
+ * Ensure the consistency among the dependencies for migrate.
+ *
+ * @group aggregator
+ */
+class MigrateDependenciesTest extends MigrateDrupal6TestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = ['aggregator'];
+
+  /**
+   * Tests dependencies on the migration of aggregator feeds & items.
+   */
+  public function testAggregatorMigrateDependencies() {
+    /** @var \Drupal\migrate\Plugin\Migration $migration */
+    $migration = $this->getMigration('d6_aggregator_item');
+    $executable = new MigrateExecutable($migration, $this);
+    $this->startCollectingMessages();
+    $executable->import();
+    $this->assertEquals([new FormattableMarkup('Migration @id did not meet the requirements. Missing migrations d6_aggregator_feed. requirements: d6_aggregator_feed.', ['@id' => $migration->id()])], $this->migrateMessages['error']);
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6AuditIdsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6AuditIdsTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..8f3a1ec34ca3d2989e0c503de2d54def941b3562
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6AuditIdsTest.php
@@ -0,0 +1,79 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
+
+use Drupal\migrate\Audit\AuditResult;
+use Drupal\migrate\Audit\IdAuditor;
+
+/**
+ * Tests that aggregator Id conflicts are discovered.
+ *
+ * @group aggregator
+ */
+class MigrateDrupal6AuditIdsTest extends MigrateDrupal6TestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'file',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+
+    // Install required schemas.
+    $this->installEntitySchema('aggregator_feed');
+    $this->installEntitySchema('aggregator_item');
+    $this->installEntitySchema('file');
+  }
+
+  /**
+   * Tests all migrations with ID conflicts.
+   */
+  public function testIdConflicts() {
+    // Get all Drupal 6 migrations.
+    $migrations = $this->container
+      ->get('plugin.manager.migration')
+      ->createInstancesByTag('Drupal 6');
+
+    // Create content.
+    $entity_type_manager = \Drupal::entityTypeManager();
+
+    // Create an aggregator feed.
+    if ($entity_type_manager->hasDefinition('aggregator_feed')) {
+      $feed = $entity_type_manager->getStorage('aggregator_feed')->create([
+        'title' => 'feed',
+        'url' => 'http://www.example.com',
+      ]);
+      $feed->save();
+
+      // Create an aggregator feed item.
+      $item = $entity_type_manager->getStorage('aggregator_item')->create([
+        'title' => 'feed item',
+        'fid' => $feed->id(),
+        'link' => 'http://www.example.com',
+      ]);
+      $item->save();
+    }
+
+    // Audit the IDs of all migrations. There should be conflicts since content
+    // has been created.
+    $conflicts = array_map(
+      function (AuditResult $result) {
+        return $result->passed() ? NULL : $result->getMigration()->getBaseId();
+      },
+      (new IdAuditor())->auditMultiple($migrations)
+    );
+
+    $expected = [
+      'd6_aggregator_feed',
+      'd6_aggregator_item',
+    ];
+    $this->assertEmpty(array_diff(array_filter($conflicts), $expected));
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6TestBase.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6TestBase.php
new file mode 100644
index 0000000000000000000000000000000000000000..5b9ede9c3af548ec29b2acfea3a615be7e5a8585
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateDrupal6TestBase.php
@@ -0,0 +1,41 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Kernel\Migrate\d6;
+
+use Drupal\migrate_drupal\NodeMigrateType;
+use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase;
+use Drupal\Tests\migrate_drupal\Traits\NodeMigrateTypeTestTrait;
+
+/**
+ * Base class for Drupal 6 migration tests.
+ */
+abstract class MigrateDrupal6TestBase extends MigrateDrupalTestBase {
+
+  use NodeMigrateTypeTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp():void {
+    parent::setUp();
+    // Add a node classic migrate table to the destination site so that tests
+    // run by default with the classic node migrations.
+    $this->makeNodeMigrateMapTable(NodeMigrateType::NODE_MIGRATE_TYPE_CLASSIC, '6');
+    $this->loadFixture($this->getFixtureFilePath());
+  }
+
+  /**
+   * Gets the path to the fixture file.
+   */
+  protected function getFixtureFilePath() {
+    return __DIR__ . '/../../../../fixtures/drupal6.php';
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php
index 94ebb19f372962b4ebbe0fb12665982886fa3bfa..8e6ac2d3d032acff10447fa313b4fe64f3a19127 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php
@@ -3,20 +3,14 @@
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d7;
 
 use Drupal\aggregator\Entity\Feed;
-use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
 
 /**
  * Test migration to aggregator_feed entities.
  *
- * @group migrate_drupal_7
+ * @group aggregator
  */
 class MigrateAggregatorFeedTest extends MigrateDrupal7TestBase {
 
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php
index c977b7727926cb9f95c86278eec6cd90af3b5fba..d45f6ee7814ce649b19bd905799f7320263d5068 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php
@@ -3,20 +3,14 @@
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d7;
 
 use Drupal\aggregator\Entity\Item;
-use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
 
 /**
  * Tests migration of aggregator items.
  *
- * @group migrate_drupal_7
+ * @group aggregator
  */
 class MigrateAggregatorItemTest extends MigrateDrupal7TestBase {
 
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php
index 7ed75d27bfcf6e163a186d1eb990fb112ff74e6a..3b11917e224e9182d02cc673ec358b960f4c4d69 100644
--- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php
@@ -2,8 +2,6 @@
 
 namespace Drupal\Tests\aggregator\Kernel\Migrate\d7;
 
-use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
-
 /**
  * Tests migration of Aggregator's variables to configuration.
  *
@@ -11,8 +9,6 @@
  */
 class MigrateAggregatorSettingsTest extends MigrateDrupal7TestBase {
 
-  protected static $modules = ['aggregator'];
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7AuditIdsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7AuditIdsTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..492bd68b17c8cfc76e66ff2c6c81b884dd658f10
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7AuditIdsTest.php
@@ -0,0 +1,78 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Kernel\Migrate\d7;
+
+use Drupal\migrate\Audit\AuditResult;
+use Drupal\migrate\Audit\IdAuditor;
+
+/**
+ * Tests the migration auditor for ID conflicts.
+ *
+ * @group aggregator
+ */
+class MigrateDrupal7AuditIdsTest extends MigrateDrupal7TestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'file',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp(): void {
+    parent::setUp();
+
+    // Install required schemas.
+    $this->installEntitySchema('aggregator_feed');
+    $this->installEntitySchema('aggregator_item');
+    $this->installEntitySchema('file');
+  }
+
+  /**
+   * Tests all migrations with ID conflicts.
+   */
+  public function testAllMigrationsWithIdConflicts() {
+    $migrations = $this->container
+      ->get('plugin.manager.migration')
+      ->createInstancesByTag('Drupal 7');
+
+    // Create content.
+    $entity_type_manager = \Drupal::entityTypeManager();
+
+    // Create an aggregator feed.
+    if ($entity_type_manager->hasDefinition('aggregator_feed')) {
+      $feed = $entity_type_manager->getStorage('aggregator_feed')->create([
+        'title' => 'feed',
+        'url' => 'http://www.example.com',
+      ]);
+      $feed->save();
+
+      // Create an aggregator feed item.
+      $item = $entity_type_manager->getStorage('aggregator_item')->create([
+        'title' => 'feed item',
+        'fid' => $feed->id(),
+        'link' => 'http://www.example.com',
+      ]);
+      $item->save();
+    }
+
+    // Audit the IDs of all Drupal 7 migrations. There should be conflicts since
+    // content has been created.
+    $conflicts = array_map(
+      function (AuditResult $result) {
+        return $result->passed() ? NULL : $result->getMigration()->getBaseId();
+      },
+      (new IdAuditor())->auditMultiple($migrations)
+    );
+
+    $expected = [
+      'd7_aggregator_feed',
+      'd7_aggregator_item',
+    ];
+    $this->assertEmpty(array_diff(array_filter($conflicts), $expected));
+  }
+
+}
diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7TestBase.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7TestBase.php
new file mode 100644
index 0000000000000000000000000000000000000000..4e2b000e50a7f50dc60b903b9496e061fea052f1
--- /dev/null
+++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7TestBase.php
@@ -0,0 +1,41 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Kernel\Migrate\d7;
+
+use Drupal\migrate_drupal\NodeMigrateType;
+use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase;
+use Drupal\Tests\migrate_drupal\Traits\NodeMigrateTypeTestTrait;
+
+/**
+ * Base class for Drupal 7 migration tests.
+ */
+abstract class MigrateDrupal7TestBase extends MigrateDrupalTestBase {
+
+  use NodeMigrateTypeTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = [
+    'aggregator',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp():void {
+    parent::setUp();
+    // Add a node classic migrate table to the destination site so that tests
+    // run by default with the classic node migrations.
+    $this->makeNodeMigrateMapTable(NodeMigrateType::NODE_MIGRATE_TYPE_CLASSIC, '7');
+    $this->loadFixture($this->getFixtureFilePath());
+  }
+
+  /**
+   * Gets the path to the fixture file.
+   */
+  protected function getFixtureFilePath() {
+    return __DIR__ . '/../../../../fixtures/drupal7.php';
+  }
+
+}
diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
index b9a1c2b7f10be1a2001f6b100236c1ad3532178b..65987ab6087f7c6e1d27e4fa0e20b4f5e0f22fec 100644
--- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
+++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
@@ -26,6 +26,7 @@ class MigrationPluginListTest extends KernelTestBase {
     'migrate',
     // Test with all modules containing Drupal migrations.
     'action',
+    // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
     'aggregator',
     'ban',
     'block',
diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrations/state/migrate_state_finished_test.migrate_drupal.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrations/state/migrate_state_finished_test.migrate_drupal.yml
index 28169879d12d564bc069f9e2aa0bf7aea98314bb..ecf714d5d4fceff0e5cd8928457f20d2ac8cf41d 100644
--- a/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrations/state/migrate_state_finished_test.migrate_drupal.yml
+++ b/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrations/state/migrate_state_finished_test.migrate_drupal.yml
@@ -1,15 +1,9 @@
 finished:
   6:
-    # A field migration
-    #  migrate_state_finished_test: migrate_state_finished_test
-    aggregator: migrate_state_finished_test
     action:
       - migrate_state_finished_test
       - migrate_state_not_finished_test
   7:
-    # A field migration
-    #  migrate_state_finished_test: migrate_state_finished_test
-    aggregator: migrate_state_finished_test
     # Migrations
     action:
       - migrate_state_finished_test
diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrations/state/migrate_state_not_finished_test.migrate_drupal.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrations/state/migrate_state_not_finished_test.migrate_drupal.yml
index ce2a387e5a88bfe285a46a8bc5f0d64b178f768f..7879521ce46d3ceff4dcb892ac7de7582dc5de6c 100644
--- a/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrations/state/migrate_state_not_finished_test.migrate_drupal.yml
+++ b/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrations/state/migrate_state_not_finished_test.migrate_drupal.yml
@@ -1,9 +1,12 @@
+# cspell:ignore optionwidgets
 not_finished:
   6:
     block: migrate_state_not_finished_test
+    # Override any finished declarations for this field plugin.
+    optionwidgets: options
   7:
     # Override any finished declarations for this field plugin.
-    aggregator: field_left
+    options: options
     # Override any finished declarations for this migration.
     action: migrate_state_not_finished_test
     block: migrate_state_not_finished_test
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/StateFileExists.php b/core/modules/migrate_drupal/tests/src/Kernel/StateFileExists.php
index 6d0730dd73ce5e959a3905bb7f514594eba0b1b8..2a60300f2551833167967a17b935f7d0e5bcd671 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/StateFileExists.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/StateFileExists.php
@@ -37,6 +37,7 @@ class StateFileExists extends MigrateDrupalTestBase {
    */
   protected $stateFileRequired = [
     'action',
+    // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
     'aggregator',
     'ban',
     'block',
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 4e42890c5c2a88a109346a49f581957f4023341a..78a50f7321c7f4c47632393d972223265ae8c0ba 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php
@@ -128,6 +128,7 @@ function (AuditResult $result) {
     );
 
     $expected = [
+      // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
       'd6_aggregator_feed',
       'd6_aggregator_item',
       'd6_comment',
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 60608e651df3c80a8dfd397e8727fe9f10c1bf63..09b1247f747ca87e47180c8696a0bebd0c9b5305 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php
@@ -127,6 +127,7 @@ function (AuditResult $result) {
     );
 
     $expected = [
+      // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
       'd7_aggregator_feed',
       'd7_aggregator_item',
       'd7_comment',
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php b/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php
index 7200dfa383e224f15c2d5d41f884559fe386c2dc..405e71d4108c464070d9ab1658e3556f6f60dc89 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php
@@ -2,9 +2,7 @@
 
 namespace Drupal\Tests\migrate_drupal\Kernel\dependencies;
 
-use Drupal\Component\Render\FormattableMarkup;
 use Drupal\migrate\Exception\RequirementsException;
-use Drupal\migrate\MigrateExecutable;
 use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
 
 /**
@@ -17,7 +15,7 @@ class MigrateDependenciesTest extends MigrateDrupal6TestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['aggregator', 'comment'];
+  protected static $modules = ['comment'];
 
   /**
    * Tests that the order is correct when loading several migrations.
@@ -45,17 +43,4 @@ public function testMigrationDependenciesOrder() {
     }
   }
 
-  /**
-   * Tests dependencies on the migration of aggregator feeds & items.
-   */
-  public function testAggregatorMigrateDependencies() {
-    /** @var \Drupal\migrate\Plugin\Migration $migration */
-    $migration = $this->getMigration('d6_aggregator_item');
-    $executable = new MigrateExecutable($migration, $this);
-    $this->startCollectingMessages();
-    $executable->import();
-    $this->assertEquals([new FormattableMarkup('Migration @id did not meet the requirements. Missing migrations d6_aggregator_feed. requirements: d6_aggregator_feed.', ['@id' => $migration->id()])], $this->migrateMessages['error']);
-    $this->collectMessages = FALSE;
-  }
-
 }
diff --git a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
index 3f1dc9b4b43d0de90b463913a617d3f92b9423ee..474e36c6f9cff168e03b9fc7d75119c98126fb46 100644
--- a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
+++ b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
@@ -14,6 +14,7 @@ trait CreateTestContentEntitiesTrait {
    */
   protected function getRequiredModules() {
     return [
+      // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
       'aggregator',
       'block_content',
       'comment',
@@ -35,6 +36,7 @@ protected function getRequiredModules() {
    * Install required entity schemas.
    */
   protected function installEntitySchemas() {
+    // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
     $this->installEntitySchema('aggregator_feed');
     $this->installEntitySchema('aggregator_item');
     $this->installEntitySchema('block_content');
@@ -53,6 +55,7 @@ protected function installEntitySchemas() {
   protected function createContent() {
     $entity_type_manager = \Drupal::entityTypeManager();
 
+    // @todo Remove aggregator in https://www.drupal.org/project/drupal/issues/3264120
     // Create an aggregator feed.
     if ($entity_type_manager->hasDefinition('aggregator_feed')) {
       $feed = $entity_type_manager->getStorage('aggregator_feed')->create([
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/IdConflictTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/IdConflictTest.php
index 554c1005ad7636e44ae790e9a50e0dd4b8b85239..7e9412f25d9bd812344e306dd28243512a2ce5ae 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/IdConflictTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/IdConflictTest.php
@@ -15,7 +15,6 @@ class IdConflictTest extends MigrateUpgradeExecuteTestBase {
    * {@inheritdoc}
    */
   protected static $modules = [
-    'aggregator',
     'book',
     'config_translation',
     'content_translation',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MultilingualReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MultilingualReviewPageTest.php
index 1a400a282489e9a98b8c3b95d1f035f3453e42dd..5534d1004623fe0ba38c15ca17d69908a12a0363 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MultilingualReviewPageTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MultilingualReviewPageTest.php
@@ -25,7 +25,6 @@ class MultilingualReviewPageTest extends MultilingualReviewPageTestBase {
     'content_translation',
     'config_translation',
     'telephone',
-    'aggregator',
     'book',
     'forum',
     'statistics',
@@ -59,7 +58,6 @@ protected function getSourceBasePath() {
    */
   protected function getAvailablePaths() {
     return [
-      'Aggregator',
       'Block translation',
       'Blog',
       'Blog API',
@@ -110,7 +108,6 @@ protected function getAvailablePaths() {
       'Nodeaccess',
       'Number',
       'OpenID',
-      'Option Widgets',
       'PHP filter',
       'Path',
       'Phone - CCK',
@@ -148,11 +145,14 @@ protected function getAvailablePaths() {
    */
   protected function getMissingPaths() {
     return [
+      'Aggregator',
       // Block is set not_finished in migrate_state_not_finished_test.
       'Block',
       'Devel',
       'Devel generate',
       'Devel node access',
+      // Option Widgets is set not_finished in migrate_state_not_finished_test.
+      'Option Widgets',
       'Views',
       'Views translation',
       'migrate_status_active_test',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NoMultilingualReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NoMultilingualReviewPageTest.php
index fcd7a9ae7d8108bcd00f5de44aa9ab473411a20d..4361474c586e42755cb822d1400df3fea5bbffb5 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NoMultilingualReviewPageTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NoMultilingualReviewPageTest.php
@@ -23,7 +23,6 @@ class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
     'datetime_range',
     'language',
     'telephone',
-    'aggregator',
     'book',
     'forum',
     'statistics',
@@ -55,7 +54,6 @@ protected function getSourceBasePath() {
    */
   protected function getAvailablePaths() {
     return [
-      'Aggregator',
       'Blog',
       'Blog API',
       'Book',
@@ -101,7 +99,6 @@ protected function getAvailablePaths() {
       'Node Reference',
       'Number',
       'OpenID',
-      'Option Widgets',
       'PHP filter',
       'Path',
       'Phone - CCK',
@@ -141,6 +138,7 @@ protected function getIncompletePaths() {
    */
   protected function getMissingPaths() {
     return [
+      'Aggregator',
       // Block is set not_finished in migrate_state_not_finished_test.
       'Block',
       'Block translation',
@@ -152,6 +150,8 @@ protected function getMissingPaths() {
       'Internationalization',
       'Menu translation',
       'migrate_status_active_test',
+      // Option Widgets is set not_finished in migrate_state_not_finished_test.
+      'Option Widgets',
       'Poll aggregate',
       'Profile translation',
       'String translation',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NodeClassicTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NodeClassicTest.php
index ab8d1b6ca614485e1785f8b6b15416d6dc3d178c..6cea7ef5a44ec844cd62bd580160e3cd601f7801 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NodeClassicTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/NodeClassicTest.php
@@ -27,7 +27,6 @@ class NodeClassicTest extends MigrateUpgradeExecuteTestBase {
     'config_translation',
     'migrate_drupal_ui',
     'telephone',
-    'aggregator',
     'book',
     'forum',
     'statistics',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
index 323f8f387a2ee02cafcdc04776d71792da38ae18..1a85d893dd906497dbb185d8b427cb3384d0231e 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
@@ -18,7 +18,6 @@ class Upgrade6Test extends MigrateUpgradeExecuteTestBase {
    * {@inheritdoc}
    */
   protected static $modules = [
-    'aggregator',
     'book',
     'config_translation',
     'content_translation',
@@ -43,7 +42,7 @@ class Upgrade6Test extends MigrateUpgradeExecuteTestBase {
    */
   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
@@ -68,8 +67,6 @@ protected function getSourceBasePath() {
    */
   protected function getEntityCounts() {
     return [
-      'aggregator_item' => 1,
-      'aggregator_feed' => 2,
       'block' => 34,
       'block_content' => 2,
       'block_content_type' => 1,
@@ -104,12 +101,12 @@ protected function getEntityCounts() {
       'user' => 7,
       'user_role' => 7,
       'menu_link_content' => 10,
-      'view' => 16,
+      'view' => 14,
       'date_format' => 11,
       'entity_form_display' => 31,
       'entity_form_mode' => 1,
-      'entity_view_display' => 61,
-      'entity_view_mode' => 14,
+      'entity_view_display' => 58,
+      'entity_view_mode' => 12,
       'base_field_override' => 41,
     ];
   }
@@ -121,14 +118,11 @@ protected function getEntityCountsIncremental() {
     $counts = $this->getEntityCounts();
     $counts['block_content'] = 3;
     $counts['comment'] = 9;
-    $counts['entity_view_display'] = 61;
-    $counts['entity_view_mode'] = 14;
     $counts['file'] = 8;
     $counts['menu_link_content'] = 11;
     $counts['node'] = 19;
     $counts['taxonomy_term'] = 16;
     $counts['user'] = 8;
-    $counts['view'] = 16;
     return $counts;
   }
 
@@ -137,7 +131,6 @@ protected function getEntityCountsIncremental() {
    */
   protected function getAvailablePaths() {
     return [
-      'Aggregator',
       'Block',
       'Block translation',
       'Book',
@@ -192,7 +185,9 @@ protected function getAvailablePaths() {
    * {@inheritdoc}
    */
   protected function getMissingPaths() {
-    return [];
+    return [
+      'Aggregator',
+    ];
   }
 
   /**
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/IdConflictTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/IdConflictTest.php
index 8e9fc0e2b8d53d7a278f6a7f9afb663e120f682d..961e24dcfc3d5cee445e92c743a3d0ff03f3bb1c 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/IdConflictTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/IdConflictTest.php
@@ -15,7 +15,6 @@ class IdConflictTest extends MigrateUpgradeExecuteTestBase {
    * {@inheritdoc}
    */
   protected static $modules = [
-    'aggregator',
     'book',
     'config_translation',
     'content_translation',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MultilingualReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MultilingualReviewPageTest.php
index ecf3c1a18f4738da19cb843a70c6c4a8d0854058..44934f6cec94d0c353e59e6a200e99eaf2f7599a 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MultilingualReviewPageTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MultilingualReviewPageTest.php
@@ -24,7 +24,6 @@ class MultilingualReviewPageTest extends MultilingualReviewPageTestBase {
     'language',
     'content_translation',
     'telephone',
-    'aggregator',
     'book',
     'forum',
     'statistics',
@@ -107,7 +106,6 @@ protected function getAvailablePaths() {
       'Node Reference',
       'Number',
       'OpenID',
-      'Options',
       'Overlay',
       'PHP filter',
       'Page manager',
@@ -151,7 +149,6 @@ protected function getAvailablePaths() {
   protected function getMissingPaths() {
     return [
       // Action is set not_finished in migrate_state_not_finished_test.
-      // Aggregator is set not_finished in migrate_state_not_finished_test.
       'Aggregator',
       // Block is set not_finished in migrate_state_not_finished_test.
       'Block',
@@ -166,6 +163,8 @@ protected function getMissingPaths() {
       'Multilingual content',
       'Multilingual forum',
       'Multilingual select',
+      // Options is set not_finished in migrate_state_not_finished_test.
+      'Options',
       'Path translation',
       'Picture',
       'References',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/NoMultilingualReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/NoMultilingualReviewPageTest.php
index 655bdead604c8381ef7891ab8705283ed3e79f08..c5d90975199b777c097619f212c3c7eb6e49bfe4 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/NoMultilingualReviewPageTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/NoMultilingualReviewPageTest.php
@@ -19,7 +19,6 @@ class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
    * {@inheritdoc}
    */
   protected static $modules = [
-    'aggregator',
     'book',
     'config_translation',
     'content_translation',
@@ -52,7 +51,6 @@ protected function getSourceBasePath() {
    */
   protected function getAvailablePaths() {
     return [
-      'Aggregator',
       'Block',
       'Block languages',
       'Book',
@@ -156,6 +154,7 @@ protected function getIncompletePaths() {
    */
   protected function getMissingPaths() {
     return [
+      'Aggregator',
       'Breakpoints',
       'Contact translation',
       'Entity Translation Menu',
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
index 1a30e1cc07ab26bd423cb2ed70ce1453250aafb9..7c9d40b52af2321f02b96fa956b1c7abeb91e972 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
@@ -21,7 +21,6 @@ class Upgrade7Test extends MigrateUpgradeExecuteTestBase {
    * {@inheritdoc}
    */
   protected static $modules = [
-    'aggregator',
     'book',
     'config_translation',
     'content_translation',
@@ -46,6 +45,7 @@ class Upgrade7Test extends MigrateUpgradeExecuteTestBase {
   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
@@ -70,8 +70,6 @@ protected function getSourceBasePath() {
    */
   protected function getEntityCounts() {
     return [
-      'aggregator_item' => 11,
-      'aggregator_feed' => 1,
       'block' => 25,
       'block_content' => 1,
       'block_content_type' => 1,
@@ -106,12 +104,12 @@ protected function getEntityCounts() {
       'user' => 4,
       'user_role' => 4,
       'menu_link_content' => 12,
-      'view' => 16,
+      'view' => 14,
       'date_format' => 11,
       'entity_form_display' => 24,
       'entity_form_mode' => 1,
-      'entity_view_display' => 37,
-      'entity_view_mode' => 14,
+      'entity_view_display' => 34,
+      'entity_view_mode' => 12,
       'base_field_override' => 4,
     ];
   }
@@ -136,7 +134,6 @@ protected function getEntityCountsIncremental() {
    */
   protected function getAvailablePaths() {
     return [
-      'Aggregator',
       'Block languages',
       'Block',
       'Book',
@@ -206,6 +203,7 @@ protected function getAvailablePaths() {
    */
   protected function getMissingPaths() {
     return [
+      'Aggregator',
       'References',
       'Translation sets',
       'Variable realm',